From ae2919a6809c13a51b1475f16cdbbd7b0d260944 Mon Sep 17 00:00:00 2001 From: John Jeong Date: Wed, 16 Sep 2026 21:39:27 +0900 Subject: [PATCH 1/4] Add system-wide dictation for Pro users Support configurable shortcuts and focused text insertion on macOS, Windows, and Linux. Gate access on Pro and handle recorder ownership, cancellation, and transcript recovery. ANLG-382. --- Cargo.lock | 62 ++++ apps/desktop/package.json | 1 + apps/desktop/public/dictation.html | 22 ++ apps/desktop/src-tauri/src/lib.rs | 3 +- .../components/input/use-dictation.test.tsx | 5 +- .../chat/components/input/use-dictation.ts | 35 +- apps/desktop/src/dictation/controller.test.ts | 135 ++++++++ apps/desktop/src/dictation/controller.ts | 106 ++++++ apps/desktop/src/dictation/lifecycle.test.tsx | 220 ++++++++++++ apps/desktop/src/dictation/lifecycle.tsx | 239 +++++++++++++ apps/desktop/src/i18n/locales/af/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/af/messages.ts | 2 +- apps/desktop/src/i18n/locales/am/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/am/messages.ts | 2 +- apps/desktop/src/i18n/locales/ar/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ar/messages.ts | 2 +- apps/desktop/src/i18n/locales/as/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/as/messages.ts | 2 +- apps/desktop/src/i18n/locales/az/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/az/messages.ts | 2 +- apps/desktop/src/i18n/locales/ba/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ba/messages.ts | 2 +- apps/desktop/src/i18n/locales/be/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/be/messages.ts | 2 +- apps/desktop/src/i18n/locales/bg/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/bg/messages.ts | 2 +- apps/desktop/src/i18n/locales/bn/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/bn/messages.ts | 2 +- apps/desktop/src/i18n/locales/bo/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/bo/messages.ts | 2 +- apps/desktop/src/i18n/locales/br/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/br/messages.ts | 2 +- apps/desktop/src/i18n/locales/bs/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/bs/messages.ts | 2 +- apps/desktop/src/i18n/locales/ca/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ca/messages.ts | 2 +- apps/desktop/src/i18n/locales/cs/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/cs/messages.ts | 2 +- apps/desktop/src/i18n/locales/cy/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/cy/messages.ts | 2 +- apps/desktop/src/i18n/locales/da/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/da/messages.ts | 2 +- apps/desktop/src/i18n/locales/de/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/de/messages.ts | 2 +- apps/desktop/src/i18n/locales/el/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/el/messages.ts | 2 +- apps/desktop/src/i18n/locales/en/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/en/messages.ts | 2 +- apps/desktop/src/i18n/locales/es/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/es/messages.ts | 2 +- apps/desktop/src/i18n/locales/et/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/et/messages.ts | 2 +- apps/desktop/src/i18n/locales/eu/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/eu/messages.ts | 2 +- apps/desktop/src/i18n/locales/fa/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/fa/messages.ts | 2 +- apps/desktop/src/i18n/locales/ff/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ff/messages.ts | 2 +- apps/desktop/src/i18n/locales/fi/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/fi/messages.ts | 2 +- apps/desktop/src/i18n/locales/fo/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/fo/messages.ts | 2 +- apps/desktop/src/i18n/locales/fr/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/fr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ga/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ga/messages.ts | 2 +- apps/desktop/src/i18n/locales/gl/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/gl/messages.ts | 2 +- apps/desktop/src/i18n/locales/gu/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/gu/messages.ts | 2 +- apps/desktop/src/i18n/locales/ha/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ha/messages.ts | 2 +- apps/desktop/src/i18n/locales/he/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/he/messages.ts | 2 +- apps/desktop/src/i18n/locales/hi/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/hi/messages.ts | 2 +- apps/desktop/src/i18n/locales/hr/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/hr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ht/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ht/messages.ts | 2 +- apps/desktop/src/i18n/locales/hu/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/hu/messages.ts | 2 +- apps/desktop/src/i18n/locales/hy/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/hy/messages.ts | 2 +- apps/desktop/src/i18n/locales/id/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/id/messages.ts | 2 +- apps/desktop/src/i18n/locales/ig/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ig/messages.ts | 2 +- apps/desktop/src/i18n/locales/is/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/is/messages.ts | 2 +- apps/desktop/src/i18n/locales/it/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/it/messages.ts | 2 +- apps/desktop/src/i18n/locales/ja/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ja/messages.ts | 2 +- apps/desktop/src/i18n/locales/jv/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/jv/messages.ts | 2 +- apps/desktop/src/i18n/locales/ka/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ka/messages.ts | 2 +- apps/desktop/src/i18n/locales/kk/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/kk/messages.ts | 2 +- apps/desktop/src/i18n/locales/km/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/km/messages.ts | 2 +- apps/desktop/src/i18n/locales/kn/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/kn/messages.ts | 2 +- apps/desktop/src/i18n/locales/ko/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ko/messages.ts | 2 +- apps/desktop/src/i18n/locales/ku/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ku/messages.ts | 2 +- apps/desktop/src/i18n/locales/ky/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ky/messages.ts | 2 +- apps/desktop/src/i18n/locales/la/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/la/messages.ts | 2 +- apps/desktop/src/i18n/locales/lb/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/lb/messages.ts | 2 +- apps/desktop/src/i18n/locales/lg/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/lg/messages.ts | 2 +- apps/desktop/src/i18n/locales/ln/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ln/messages.ts | 2 +- apps/desktop/src/i18n/locales/lo/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/lo/messages.ts | 2 +- apps/desktop/src/i18n/locales/lt/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/lt/messages.ts | 2 +- apps/desktop/src/i18n/locales/lv/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/lv/messages.ts | 2 +- apps/desktop/src/i18n/locales/mg/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mg/messages.ts | 2 +- apps/desktop/src/i18n/locales/mi/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mi/messages.ts | 2 +- apps/desktop/src/i18n/locales/mk/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mk/messages.ts | 2 +- apps/desktop/src/i18n/locales/ml/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ml/messages.ts | 2 +- apps/desktop/src/i18n/locales/mn/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mn/messages.ts | 2 +- apps/desktop/src/i18n/locales/mr/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mr/messages.ts | 2 +- apps/desktop/src/i18n/locales/ms/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ms/messages.ts | 2 +- apps/desktop/src/i18n/locales/mt/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/mt/messages.ts | 2 +- apps/desktop/src/i18n/locales/my/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/my/messages.ts | 2 +- apps/desktop/src/i18n/locales/ne/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ne/messages.ts | 2 +- apps/desktop/src/i18n/locales/nl/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/nl/messages.ts | 2 +- apps/desktop/src/i18n/locales/nn/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/nn/messages.ts | 2 +- apps/desktop/src/i18n/locales/no/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/no/messages.ts | 2 +- apps/desktop/src/i18n/locales/ny/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ny/messages.ts | 2 +- apps/desktop/src/i18n/locales/oc/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/oc/messages.ts | 2 +- apps/desktop/src/i18n/locales/or/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/or/messages.ts | 2 +- apps/desktop/src/i18n/locales/pa/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/pa/messages.ts | 2 +- apps/desktop/src/i18n/locales/pl/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/pl/messages.ts | 2 +- apps/desktop/src/i18n/locales/ps/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ps/messages.ts | 2 +- apps/desktop/src/i18n/locales/pt/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/pt/messages.ts | 2 +- apps/desktop/src/i18n/locales/ro/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ro/messages.ts | 2 +- apps/desktop/src/i18n/locales/ru/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ru/messages.ts | 2 +- apps/desktop/src/i18n/locales/sa/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sa/messages.ts | 2 +- apps/desktop/src/i18n/locales/sd/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sd/messages.ts | 2 +- apps/desktop/src/i18n/locales/si/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/si/messages.ts | 2 +- apps/desktop/src/i18n/locales/sk/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sk/messages.ts | 2 +- apps/desktop/src/i18n/locales/sl/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sl/messages.ts | 2 +- apps/desktop/src/i18n/locales/sn/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sn/messages.ts | 2 +- apps/desktop/src/i18n/locales/so/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/so/messages.ts | 2 +- apps/desktop/src/i18n/locales/sq/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sq/messages.ts | 2 +- apps/desktop/src/i18n/locales/sr/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sr/messages.ts | 2 +- apps/desktop/src/i18n/locales/su/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/su/messages.ts | 2 +- apps/desktop/src/i18n/locales/sv/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sv/messages.ts | 2 +- apps/desktop/src/i18n/locales/sw/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/sw/messages.ts | 2 +- apps/desktop/src/i18n/locales/ta/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ta/messages.ts | 2 +- apps/desktop/src/i18n/locales/te/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/te/messages.ts | 2 +- apps/desktop/src/i18n/locales/tg/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/tg/messages.ts | 2 +- apps/desktop/src/i18n/locales/th/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/th/messages.ts | 2 +- apps/desktop/src/i18n/locales/tk/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/tk/messages.ts | 2 +- apps/desktop/src/i18n/locales/tl/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/tl/messages.ts | 2 +- apps/desktop/src/i18n/locales/tr/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/tr/messages.ts | 2 +- apps/desktop/src/i18n/locales/tt/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/tt/messages.ts | 2 +- apps/desktop/src/i18n/locales/uk/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/uk/messages.ts | 2 +- apps/desktop/src/i18n/locales/ur/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/ur/messages.ts | 2 +- apps/desktop/src/i18n/locales/uz/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/uz/messages.ts | 2 +- apps/desktop/src/i18n/locales/vi/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/vi/messages.ts | 2 +- apps/desktop/src/i18n/locales/wo/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/wo/messages.ts | 2 +- apps/desktop/src/i18n/locales/xh/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/xh/messages.ts | 2 +- apps/desktop/src/i18n/locales/yi/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/yi/messages.ts | 2 +- apps/desktop/src/i18n/locales/yo/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/yo/messages.ts | 2 +- apps/desktop/src/i18n/locales/zh/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/zh/messages.ts | 2 +- apps/desktop/src/i18n/locales/zu/messages.po | 115 +++++++ apps/desktop/src/i18n/locales/zu/messages.ts | 2 +- apps/desktop/src/main/lifecycle.tsx | 2 + apps/desktop/src/settings/dictation.tsx | 313 ++++++++++++++++++ .../src/settings/general/audio-settings.tsx | 2 +- apps/desktop/src/settings/index.tsx | 3 + apps/desktop/src/settings/schema.ts | 15 + apps/desktop/src/sidebar/settings.tsx | 6 + apps/desktop/src/store/zustand/tabs/schema.ts | 2 + apps/desktop/src/stt/useRunBatch.test.ts | 52 ++- apps/desktop/src/stt/useRunBatch.ts | 37 ++- crates/dictation-ui-macos/src/lib.rs | 13 + .../swift-lib/src/TextInsertion.swift | 114 +++++++ crates/shortcut-macos/src/hotkey.rs | 2 + crates/shortcut-macos/src/listener.rs | 14 +- crates/shortcut-macos/src/processor.rs | 13 +- crates/shortcut-macos/src/tap.rs | 29 +- crates/shortcut-macos/tests/processor.rs | 48 ++- plugins/dictation/Cargo.toml | 8 + plugins/dictation/build.rs | 2 + plugins/dictation/js/bindings.gen.ts | 28 +- .../commands/capture_target.toml | 13 + .../autogenerated/commands/insert_text.toml | 13 + .../permissions/autogenerated/reference.md | 54 +++ plugins/dictation/permissions/default.toml | 2 + .../dictation/permissions/schemas/schema.json | 28 +- plugins/dictation/src/commands.rs | 24 +- plugins/dictation/src/handler.rs | 59 +++- plugins/dictation/src/insertion/linux.rs | 138 ++++++++ plugins/dictation/src/insertion/mod.rs | 25 ++ plugins/dictation/src/insertion/windows.rs | 98 ++++++ plugins/dictation/src/lib.rs | 30 +- plugins/dictation/src/recorder.rs | 66 +++- plugins/shortcut/Cargo.toml | 7 + plugins/shortcut/build.rs | 7 +- plugins/shortcut/js/bindings.gen.ts | 18 +- .../autogenerated/commands/configure.toml | 13 + .../autogenerated/commands/set_active.toml | 13 + .../permissions/autogenerated/reference.md | 54 +++ plugins/shortcut/permissions/default.toml | 2 + .../shortcut/permissions/schemas/schema.json | 28 +- plugins/shortcut/src/events.rs | 1 + plugins/shortcut/src/global.rs | 168 ++++++++++ plugins/shortcut/src/global/portal.rs | 132 ++++++++ plugins/shortcut/src/handler.rs | 6 +- plugins/shortcut/src/lib.rs | 19 +- pnpm-lock.yaml | 3 + 273 files changed, 15091 insertions(+), 214 deletions(-) create mode 100644 apps/desktop/public/dictation.html create mode 100644 apps/desktop/src/dictation/controller.test.ts create mode 100644 apps/desktop/src/dictation/controller.ts create mode 100644 apps/desktop/src/dictation/lifecycle.test.tsx create mode 100644 apps/desktop/src/dictation/lifecycle.tsx create mode 100644 apps/desktop/src/settings/dictation.tsx create mode 100644 crates/dictation-ui-macos/swift-lib/src/TextInsertion.swift create mode 100644 plugins/dictation/permissions/autogenerated/commands/capture_target.toml create mode 100644 plugins/dictation/permissions/autogenerated/commands/insert_text.toml create mode 100644 plugins/dictation/src/insertion/linux.rs create mode 100644 plugins/dictation/src/insertion/mod.rs create mode 100644 plugins/dictation/src/insertion/windows.rs create mode 100644 plugins/shortcut/permissions/autogenerated/commands/configure.toml create mode 100644 plugins/shortcut/permissions/autogenerated/commands/set_active.toml create mode 100644 plugins/shortcut/src/global.rs create mode 100644 plugins/shortcut/src/global/portal.rs diff --git a/Cargo.lock b/Cargo.lock index 2a97824df48..ac0b415b015 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1026,6 +1026,20 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +[[package]] +name = "ashpd" +version = "0.13.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb8421aaa9644a5faf26735f258b669b15f063313ef8f8e2bdb28912a1a6f111" +dependencies = [ + "enumflags2", + "futures-util", + "getrandom 0.4.2", + "serde", + "tokio", + "zbus", +] + [[package]] name = "askama" version = "0.13.1" @@ -7410,6 +7424,24 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" +[[package]] +name = "global-hotkey" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c386b0a4a70cb2d39fffd74480f985b6f0bfbcb934b6a6b6b7e630e448f242e" +dependencies = [ + "crossbeam-channel", + "keyboard-types", + "objc2", + "objc2-app-kit", + "once_cell", + "serde", + "thiserror 2.0.18", + "windows-sys 0.59.0", + "x11rb", + "xkeysym", +] + [[package]] name = "globset" version = "0.4.18" @@ -16994,11 +17026,13 @@ dependencies = [ name = "tauri-plugin-dictation" version = "0.1.0" dependencies = [ + "atspi", "audio", "dictation-ui-macos", "futures-util", "hound", "serde", + "serde_json", "specta", "specta-typescript", "tauri", @@ -17010,6 +17044,8 @@ dependencies = [ "tokio", "tokio-util", "tracing", + "windows 0.62.2", + "zbus", ] [[package]] @@ -17118,6 +17154,21 @@ dependencies = [ "walkdir", ] +[[package]] +name = "tauri-plugin-global-shortcut" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4dd9f4c5136c09cd962da0c86dc4accd4666db2ea591cf16e6597435843bd2b" +dependencies = [ + "global-hotkey", + "log", + "serde", + "serde_json", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", +] + [[package]] name = "tauri-plugin-hooks" version = "0.1.0" @@ -17674,14 +17725,19 @@ dependencies = [ name = "tauri-plugin-shortcut" version = "0.1.0" dependencies = [ + "ashpd", + "futures-util", "serde", + "serde_json", "shortcut-macos", "specta", "specta-typescript", "tauri", "tauri-plugin", + "tauri-plugin-global-shortcut", "tauri-specta", "thiserror 2.0.18", + "tokio", "tracing", ] @@ -21926,6 +21982,12 @@ dependencies = [ "quick-xml 0.30.0", ] +[[package]] +name = "xkeysym" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" + [[package]] name = "xml-rs" version = "0.8.28" diff --git a/apps/desktop/package.json b/apps/desktop/package.json index c82a8f0c84b..72d2f1b45ee 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -39,6 +39,7 @@ "@anlg/plugin-deeplink2": "workspace:*", "@anlg/plugin-detect": "workspace:*", "@anlg/plugin-dictation": "workspace:*", + "@anlg/plugin-shortcut": "workspace:*", "@anlg/plugin-export": "workspace:*", "@anlg/plugin-fs-sync": "workspace:*", "@anlg/plugin-fs2": "workspace:*", diff --git a/apps/desktop/public/dictation.html b/apps/desktop/public/dictation.html new file mode 100644 index 00000000000..ca99d327891 --- /dev/null +++ b/apps/desktop/public/dictation.html @@ -0,0 +1,22 @@ + + + + + Anarlog Dictation + + + + Listening… + Transcribing… + + diff --git a/apps/desktop/src-tauri/src/lib.rs b/apps/desktop/src-tauri/src/lib.rs index df6fd4f4886..07a2fe9fe0a 100644 --- a/apps/desktop/src-tauri/src/lib.rs +++ b/apps/desktop/src-tauri/src/lib.rs @@ -345,7 +345,7 @@ pub fn main() { .plugin( tauri_plugin_window_state::Builder::default() .with_state_flags(tauri_plugin_windows::persisted_window_state_flags()) - .with_denylist(&["composer"]) + .with_denylist(&["composer", "dictation-overlay"]) .build(), ) .plugin(tauri_plugin_transcription::init()) @@ -397,6 +397,7 @@ pub fn main() { .on_window_event(tauri_plugin_windows::on_window_event) .setup(move |app| { let app_handle = app.handle().clone(); + tauri_plugin_shortcut::initialize_global_shortcuts(&app_handle); specta_builder.mount_events(&app_handle); diff --git a/apps/desktop/src/chat/components/input/use-dictation.test.tsx b/apps/desktop/src/chat/components/input/use-dictation.test.tsx index 0de1482742e..70c72a0d2dd 100644 --- a/apps/desktop/src/chat/components/input/use-dictation.test.tsx +++ b/apps/desktop/src/chat/components/input/use-dictation.test.tsx @@ -101,7 +101,10 @@ describe("useDictation", () => { await result.current.start(); }); expect(result.current.phase).toBe("recording"); - expect(mocks.startRecording).toHaveBeenCalledWith("Built-in Microphone"); + expect(mocks.startRecording).toHaveBeenCalledWith( + "Built-in Microphone", + expect.stringMatching(/^chat-dictation-/u), + ); await act(async () => { await result.current.stop(); diff --git a/apps/desktop/src/chat/components/input/use-dictation.ts b/apps/desktop/src/chat/components/input/use-dictation.ts index deb5bf442fb..0a9a42c7e12 100644 --- a/apps/desktop/src/chat/components/input/use-dictation.ts +++ b/apps/desktop/src/chat/components/input/use-dictation.ts @@ -70,12 +70,13 @@ export function useDictation({ const result = await dictationCommands.startRecording( microphoneDevice || null, + transcriptionSessionId, ); if (result.status === "error") { throw new Error(result.error); } if (!mountedRef.current) { - await cancelActiveRecording(); + await cancelActiveRecording(transcriptionSessionId); return; } @@ -93,7 +94,7 @@ export function useDictation({ } }, 250); } catch (error) { - await cancelActiveRecording(); + await cancelActiveRecording(transcriptionSessionId); if (!mountedRef.current) { return; } @@ -103,7 +104,14 @@ export function useDictation({ }); console.error("[chat-dictation] failed to start recording", error); } - }, [disabled, microphoneDevice, setPhase, stopElapsedTimer, t]); + }, [ + disabled, + microphoneDevice, + setPhase, + stopElapsedTimer, + t, + transcriptionSessionId, + ]); const stop = useCallback(async () => { if (phaseRef.current !== "recording") { @@ -115,7 +123,9 @@ export function useDictation({ let recordedPath: string | null = null; try { - const result = await dictationCommands.stopRecording(); + const result = await dictationCommands.stopRecording( + transcriptionSessionId, + ); if (result.status === "error") { throw new Error(result.error); } @@ -163,7 +173,14 @@ export function useDictation({ editorRef.current?.focus(); } } - }, [editorRef, runBatch, setPhase, stopElapsedTimer, t]); + }, [ + editorRef, + runBatch, + setPhase, + stopElapsedTimer, + t, + transcriptionSessionId, + ]); stopRef.current = stop; useMountEffect(() => { @@ -172,7 +189,7 @@ export function useDictation({ mountedRef.current = false; stopElapsedTimer(); if (phaseRef.current === "starting" || phaseRef.current === "recording") { - void cancelActiveRecording(); + void cancelActiveRecording(transcriptionSessionId); } }; }); @@ -185,9 +202,11 @@ export function useDictation({ }; } -async function cancelActiveRecording() { +async function cancelActiveRecording(transcriptionSessionId: string) { try { - const result = await dictationCommands.cancelRecording(); + const result = await dictationCommands.cancelRecording( + transcriptionSessionId, + ); if (result.status === "error") { throw new Error(result.error); } diff --git a/apps/desktop/src/dictation/controller.test.ts b/apps/desktop/src/dictation/controller.test.ts new file mode 100644 index 00000000000..00c40cc6aea --- /dev/null +++ b/apps/desktop/src/dictation/controller.test.ts @@ -0,0 +1,135 @@ +import { afterEach, describe, expect, it, vi } from "vitest"; + +import { DictationController } from "./controller"; + +function setup(handsFree = false) { + const dependencies = { + handsFree, + start: vi.fn().mockResolvedValue(undefined), + stop: vi.fn().mockResolvedValue("/tmp/dictation.wav"), + cancel: vi.fn().mockResolvedValue(undefined), + transcribe: vi.fn().mockResolvedValue("안녕하세요, world."), + insert: vi.fn().mockResolvedValue(undefined), + discard: vi.fn().mockResolvedValue(undefined), + onPhase: vi.fn(), + onTranscript: vi.fn(), + onError: vi.fn(), + }; + return { ...dependencies, controller: new DictationController(dependencies) }; +} + +const settle = async () => { + for (let i = 0; i < 20; i++) await Promise.resolve(); +}; + +describe("system dictation", () => { + afterEach(() => vi.useRealTimers()); + + it("finishes a shortcut released while the microphone is still starting", async () => { + const state = setup(); + state.controller.press(); + state.controller.release(); + await settle(); + expect(state.insert).toHaveBeenCalledWith("안녕하세요, world."); + expect(state.discard).toHaveBeenCalledWith("/tmp/dictation.wav"); + expect(state.onPhase).toHaveBeenLastCalledWith("idle"); + }); + + it("toggles hands-free recording and ignores key release", async () => { + const state = setup(true); + state.controller.press(); + state.controller.release(); + await settle(); + expect(state.stop).not.toHaveBeenCalled(); + state.controller.press(); + await settle(); + expect(state.insert).toHaveBeenCalledOnce(); + }); + + it("cancels a pending microphone start without transcribing", async () => { + const state = setup(); + state.controller.press(); + await state.controller.cancel(); + expect(state.cancel).toHaveBeenCalledOnce(); + expect(state.transcribe).not.toHaveBeenCalled(); + expect(state.insert).not.toHaveBeenCalled(); + }); + + it("never cancels another recorder when its start was rejected", async () => { + const state = setup(); + state.start.mockRejectedValueOnce(new Error("Already recording")); + state.controller.press(); + await settle(); + expect(state.cancel).not.toHaveBeenCalled(); + expect(state.onError).toHaveBeenCalledOnce(); + expect(state.onPhase).toHaveBeenLastCalledWith("idle"); + }); + + it("discards a late transcript after cancellation", async () => { + const state = setup(); + let resolve!: (value: string) => void; + state.transcribe.mockReturnValueOnce( + new Promise((done) => { + resolve = done; + }), + ); + state.controller.press(); + state.controller.release(); + await settle(); + const cancel = state.controller.cancel(); + resolve("Do not insert this"); + await cancel; + expect(state.insert).not.toHaveBeenCalled(); + expect(state.onTranscript).not.toHaveBeenCalled(); + expect(state.discard).toHaveBeenCalledOnce(); + }); + + it("keeps the transcript recoverable when the focused field changed", async () => { + const state = setup(); + state.insert.mockRejectedValueOnce(new Error("Focus changed")); + state.controller.press(); + state.controller.release(); + await settle(); + expect(state.onTranscript).toHaveBeenCalledWith("안녕하세요, world."); + expect(state.onError).toHaveBeenCalledOnce(); + expect(state.discard).toHaveBeenCalledOnce(); + }); + + it("cleans up failed and silent transcriptions without inserting", async () => { + for (const transcript of [ + Promise.reject(new Error("Network unavailable")), + Promise.resolve(" "), + ]) { + const state = setup(); + state.transcribe.mockReturnValueOnce(transcript); + state.controller.press(); + state.controller.release(); + await settle(); + expect(state.insert).not.toHaveBeenCalled(); + expect(state.discard).toHaveBeenCalledOnce(); + expect(state.onError).toHaveBeenCalledOnce(); + } + }); + + it("caps hands-free recording at five minutes", async () => { + vi.useFakeTimers(); + const state = setup(true); + state.controller.press(); + await settle(); + await vi.advanceTimersByTimeAsync(300_000); + expect(state.stop).toHaveBeenCalledOnce(); + expect(state.insert).toHaveBeenCalledOnce(); + }); + + it("ignores repeated presses and releases during transcription", async () => { + const state = setup(); + state.controller.press(); + state.controller.press(); + state.controller.release(); + state.controller.release(); + await settle(); + expect(state.start).toHaveBeenCalledOnce(); + expect(state.stop).toHaveBeenCalledOnce(); + expect(state.insert).toHaveBeenCalledOnce(); + }); +}); diff --git a/apps/desktop/src/dictation/controller.ts b/apps/desktop/src/dictation/controller.ts new file mode 100644 index 00000000000..306913d84fc --- /dev/null +++ b/apps/desktop/src/dictation/controller.ts @@ -0,0 +1,106 @@ +export type DictationPhase = "idle" | "starting" | "recording" | "transcribing"; + +export class DictationController { + private phase: DictationPhase = "idle"; + private cancelled = false; + private released = false; + private timer: ReturnType | undefined; + private operation: Promise = Promise.resolve(); + + constructor( + private readonly dependencies: { + start: () => Promise; + stop: () => Promise; + cancel: () => Promise; + transcribe: (path: string) => Promise; + insert: (text: string) => Promise; + discard: (path: string) => Promise; + onPhase: (phase: DictationPhase) => void; + onTranscript: (text: string) => void; + onError: (error: unknown) => void; + handsFree: boolean; + }, + ) {} + + press() { + if (this.phase === "idle") { + this.cancelled = false; + this.released = false; + this.setPhase("starting"); + this.operation = this.start(); + } else if (this.dependencies.handsFree && this.phase !== "transcribing") { + this.release(true); + } + } + + release(force = false) { + if (this.dependencies.handsFree && !force) return; + if (this.phase === "starting") this.released = true; + if (this.phase === "recording") { + clearTimeout(this.timer); + this.setPhase("transcribing"); + this.operation = this.finish(); + } + } + + async cancel() { + this.cancelled = true; + clearTimeout(this.timer); + if (this.phase === "recording") { + // Keep the controller busy until this recording has relinquished the mic. + this.setPhase("starting"); + this.operation = this.dependencies + .cancel() + .catch(this.dependencies.onError) + .finally(() => this.setPhase("idle")); + } + await this.operation; + } + + private setPhase(phase: DictationPhase) { + this.phase = phase; + this.dependencies.onPhase(phase); + } + + private async start() { + try { + await this.dependencies.start(); + if (this.cancelled) { + await this.dependencies.cancel(); + this.setPhase("idle"); + return; + } + this.setPhase("recording"); + this.timer = setTimeout(() => this.release(true), 300_000); + if (this.released) { + clearTimeout(this.timer); + this.setPhase("transcribing"); + await this.finish(); + } + } catch (error) { + // A rejected start never owns the recorder (chat may already be using it). + if (!this.cancelled) this.dependencies.onError(error); + this.setPhase("idle"); + } + } + + private async finish() { + let path: string | undefined; + try { + path = await this.dependencies.stop(); + if (this.cancelled) return; + const text = (await this.dependencies.transcribe(path)).trim(); + if (this.cancelled) return; + if (!text) throw new Error("No speech detected. Please try again."); + this.dependencies.onTranscript(text); + await this.dependencies.insert(text); + } catch (error) { + if (!this.cancelled) this.dependencies.onError(error); + } finally { + if (path) { + await this.dependencies.discard(path).catch(this.dependencies.onError); + } + this.setPhase("idle"); + } + } +} diff --git a/apps/desktop/src/dictation/lifecycle.test.tsx b/apps/desktop/src/dictation/lifecycle.test.tsx new file mode 100644 index 00000000000..e8c13a75313 --- /dev/null +++ b/apps/desktop/src/dictation/lifecycle.test.tsx @@ -0,0 +1,220 @@ +import { act, render, waitFor } from "@testing-library/react"; +import { beforeEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + session: { user: { id: "user-1" } } as { user: { id: string } } | null, + billing: { isPro: true, isReady: true }, + platform: "macos", + settings: { + dictation_enabled: true, + dictation_shortcut: "Control+Alt+Space", + dictation_hands_free: false, + microphone_device: "", + } as Record, + meeting: { status: "inactive", loading: false }, + configure: vi.fn(), + setActive: vi.fn(), + show: vi.fn(), + hide: vi.fn(), + setPhase: vi.fn(), + captureTarget: vi.fn(), + startRecording: vi.fn(), + stopRecording: vi.fn(), + cancelRecording: vi.fn(), + discardRecording: vi.fn(), + insertText: vi.fn(), + checkPermission: vi.fn(), + getCaptureState: vi.fn(), + runBatch: vi.fn(), + stopTranscription: vi.fn(), + unlisten: vi.fn(), + listener: null as ((event: { payload: { type: string } }) => void) | null, +})); +vi.mock("~/auth", () => ({ useAuth: () => ({ session: mocks.session }) })); +vi.mock("@tauri-apps/plugin-os", () => ({ platform: () => mocks.platform })); +vi.mock("~/auth/billing-context", () => ({ + useBillingAccess: () => mocks.billing, +})); +vi.mock("~/settings/queries", () => ({ useSettingsReady: () => true })); +vi.mock("~/shared/config", () => ({ + useConfigValue: (key: string) => mocks.settings[key], +})); +vi.mock("~/stt/contexts", () => ({ + useListener: (select: (state: unknown) => unknown) => + select({ live: mocks.meeting, stopTranscription: mocks.stopTranscription }), +})); +vi.mock("~/stt/useRunBatch", () => ({ useRunBatch: () => mocks.runBatch })); +vi.mock("@anlg/plugin-shortcut", () => ({ + commands: { configure: mocks.configure, setActive: mocks.setActive }, + events: { + shortcutEvent: { + listen: vi.fn(async (listener) => { + mocks.listener = listener; + return mocks.unlisten; + }), + }, + }, +})); +vi.mock("@anlg/plugin-dictation", () => ({ + commands: { + show: mocks.show, + hide: mocks.hide, + setPhase: mocks.setPhase, + captureTarget: mocks.captureTarget, + startRecording: mocks.startRecording, + stopRecording: mocks.stopRecording, + cancelRecording: mocks.cancelRecording, + discardRecording: mocks.discardRecording, + insertText: mocks.insertText, + }, +})); +vi.mock("@anlg/plugin-permissions", () => ({ + commands: { checkPermission: mocks.checkPermission }, +})); +vi.mock("@anlg/plugin-transcription", () => ({ + commands: { getCaptureState: mocks.getCaptureState }, +})); +vi.mock("@anlg/ui/components/ui/toast", () => ({ + sonnerToast: { error: vi.fn() }, +})); + +import { DictationLifecycle, useDictationStatus } from "./lifecycle"; + +describe("dictation access and lifecycle", () => { + beforeEach(() => { + vi.clearAllMocks(); + mocks.session = { user: { id: "user-1" } }; + mocks.billing = { isPro: true, isReady: true }; + mocks.platform = "macos"; + mocks.settings.dictation_enabled = true; + mocks.settings.microphone_device = ""; + mocks.meeting = { status: "inactive", loading: false }; + mocks.listener = null; + for (const fn of [ + mocks.configure, + mocks.setActive, + mocks.show, + mocks.hide, + mocks.setPhase, + mocks.startRecording, + mocks.cancelRecording, + mocks.discardRecording, + mocks.insertText, + ]) + fn.mockResolvedValue({ status: "ok", data: null }); + mocks.captureTarget.mockResolvedValue({ + status: "ok", + data: "focused-field", + }); + mocks.checkPermission.mockResolvedValue({ + status: "ok", + data: "authorized", + }); + mocks.getCaptureState.mockResolvedValue({ status: "ok", data: "inactive" }); + mocks.stopRecording.mockResolvedValue({ + status: "ok", + data: { filePath: "/tmp/dictation.wav" }, + }); + mocks.stopTranscription.mockResolvedValue(undefined); + mocks.runBatch.mockImplementation(async (_path, options) => + options.handlePersist([{ text: "Hello", start_ms: 0 }]), + ); + useDictationStatus.setState({ + ready: false, + phase: "idle", + lastTranscript: "", + error: null, + retry: 0, + cancel: null, + }); + }); + + it.each(["free", "loading", "signed-out", "disabled", "meeting"])( + "does not register shortcuts when %s", + async (condition) => { + if (condition === "free") mocks.billing.isPro = false; + if (condition === "loading") mocks.billing.isReady = false; + if (condition === "signed-out") mocks.session = null; + if (condition === "disabled") mocks.settings.dictation_enabled = false; + if (condition === "meeting") mocks.meeting.status = "active"; + render(); + await act(async () => {}); + expect(mocks.configure).not.toHaveBeenCalled(); + expect(mocks.startRecording).not.toHaveBeenCalled(); + }, + ); + + it("registers for Pro access and inserts into the captured field", async () => { + render(); + await waitFor(() => expect(useDictationStatus.getState().ready).toBe(true)); + expect(mocks.configure).toHaveBeenCalledWith("Control+Alt+Space"); + await act(async () => { + mocks.listener?.({ payload: { type: "pressed" } }); + }); + await act(async () => { + mocks.listener?.({ payload: { type: "released" } }); + }); + await waitFor(() => + expect(mocks.insertText).toHaveBeenCalledWith("focused-field", "Hello"), + ); + expect(mocks.startRecording).toHaveBeenCalledWith( + null, + expect.stringMatching(/^system-dictation-/u), + ); + expect(mocks.discardRecording).toHaveBeenCalledWith("/tmp/dictation.wav"); + }); + + it("aborts and removes shortcuts when paid access is lost during recording", async () => { + const view = render(); + await waitFor(() => expect(useDictationStatus.getState().ready).toBe(true)); + await act(async () => { + mocks.listener?.({ payload: { type: "pressed" } }); + }); + await waitFor(() => + expect(useDictationStatus.getState().phase).toBe("recording"), + ); + mocks.billing.isPro = false; + view.rerender(); + await waitFor(() => expect(mocks.configure).toHaveBeenLastCalledWith(null)); + expect(mocks.cancelRecording).toHaveBeenCalledWith( + expect.stringMatching(/^system-dictation-/u), + ); + expect(mocks.insertText).not.toHaveBeenCalled(); + expect(useDictationStatus.getState().lastTranscript).toBe(""); + }); + + it("reports missing microphone permission without capturing a target or audio", async () => { + mocks.checkPermission.mockResolvedValue({ status: "ok", data: "denied" }); + render(); + await waitFor(() => expect(useDictationStatus.getState().ready).toBe(true)); + await act(async () => { + mocks.listener?.({ payload: { type: "pressed" } }); + }); + expect(mocks.captureTarget).not.toHaveBeenCalled(); + expect(mocks.startRecording).not.toHaveBeenCalled(); + expect(useDictationStatus.getState().error).toMatch( + /microphone permission/u, + ); + }); + + it.each(["windows", "linux"])( + "opens the selected microphone on %s without probing a potentially missing default device", + async (platform) => { + mocks.platform = platform; + mocks.settings.microphone_device = "USB microphone"; + mocks.checkPermission.mockResolvedValue({ status: "ok", data: "denied" }); + render(); + await waitFor(() => + expect(useDictationStatus.getState().ready).toBe(true), + ); + await act(async () => { + mocks.listener?.({ payload: { type: "pressed" } }); + }); + expect(mocks.checkPermission).not.toHaveBeenCalled(); + expect(mocks.startRecording).toHaveBeenCalledWith( + "USB microphone", + expect.stringMatching(/^system-dictation-/u), + ); + }, + ); +}); diff --git a/apps/desktop/src/dictation/lifecycle.tsx b/apps/desktop/src/dictation/lifecycle.tsx new file mode 100644 index 00000000000..4edf6776516 --- /dev/null +++ b/apps/desktop/src/dictation/lifecycle.tsx @@ -0,0 +1,239 @@ +import { platform } from "@tauri-apps/plugin-os"; +import { useRef } from "react"; +import { create } from "zustand"; + +import { commands as dictation } from "@anlg/plugin-dictation"; +import { commands as permissions } from "@anlg/plugin-permissions"; +import { commands as shortcuts, events } from "@anlg/plugin-shortcut"; +import { commands as transcription } from "@anlg/plugin-transcription"; +import { sonnerToast } from "@anlg/ui/components/ui/toast"; + +import { DictationController, type DictationPhase } from "./controller"; + +import { useAuth } from "~/auth"; +import { useBillingAccess } from "~/auth/billing-context"; +import { useSettingsReady } from "~/settings/queries"; +import { useConfigValue } from "~/shared/config"; +import { useMountEffect } from "~/shared/hooks/useMountEffect"; +import { useListener } from "~/stt/contexts"; +import { useRunBatch } from "~/stt/useRunBatch"; + +export const useDictationStatus = create<{ + phase: DictationPhase; + error: string | null; + lastTranscript: string; + ready: boolean; + retry: number; + cancel: (() => void) | null; +}>(() => ({ + phase: "idle", + error: null, + lastTranscript: "", + ready: false, + retry: 0, + cancel: null, +})); + +let lifecycle: Promise = Promise.resolve(); + +export function DictationLifecycle() { + const { session } = useAuth(); + const { isPro, isReady } = useBillingAccess(); + const settingsReady = useSettingsReady(); + const enabled = useConfigValue("dictation_enabled"); + const shortcut = useConfigValue("dictation_shortcut"); + const handsFree = useConfigValue("dictation_hands_free"); + const retry = useDictationStatus((state) => state.retry); + const meetingActive = useListener( + (state) => state.live.status !== "inactive" || state.live.loading, + ); + + if ( + !session || + !isReady || + !isPro || + !settingsReady || + !enabled || + meetingActive + ) + return null; + return ( + + ); +} + +function unwrap( + result: { status: "ok"; data: T } | { status: "error"; error: string }, +): T { + if (result.status === "error") throw new Error(result.error); + return result.data; +} + +function ActiveDictation({ + shortcut, + handsFree, +}: { + shortcut: string; + handsFree: boolean; +}) { + const id = useRef(`system-dictation-${crypto.randomUUID()}`).current; + const runBatch = useRunBatch(id); + const stopTranscription = useListener((state) => state.stopTranscription); + const microphone = useConfigValue("microphone_device"); + const current = useRef({ runBatch, microphone }); + current.current = { runBatch, microphone }; + + useMountEffect(() => { + let disposed = false; + let armed = false; + let target = ""; + let unlisten: (() => void) | undefined; + let abort = new AbortController(); + let presentation: Promise = Promise.resolve(); + const onError = (error: unknown) => { + if (disposed) return; + const message = error instanceof Error ? error.message : String(error); + useDictationStatus.setState({ error: message }); + sonnerToast.error(message); + }; + const controller = new DictationController({ + handsFree, + start: async () => { + abort = new AbortController(); + useDictationStatus.setState({ error: null }); + if (platform() === "macos") { + const permission = unwrap( + await permissions.checkPermission("microphone"), + ); + if (permission !== "authorized") + throw new Error( + "Enable microphone permission in Settings > Permissions before dictating.", + ); + } + const capture = unwrap(await transcription.getCaptureState()); + if (capture !== "inactive") + throw new Error( + "Dictation is unavailable while Anarlog is recording a meeting.", + ); + abort.signal.throwIfAborted(); + target = unwrap(await dictation.captureTarget()); + unwrap(await dictation.setPhase("recording")); + unwrap(await dictation.show()); + abort.signal.throwIfAborted(); + unwrap( + await dictation.startRecording( + current.current.microphone || null, + id, + ), + ); + }, + stop: async () => unwrap(await dictation.stopRecording(id)).filePath, + cancel: async () => { + unwrap(await dictation.cancelRecording(id)); + }, + transcribe: async (path) => { + let text = ""; + await current.current.runBatch(path, { + signal: abort.signal, + deferAudioFinalization: true, + notifyOnCompletion: false, + numSpeakers: 1, + handlePersist: (words) => { + text = words + .slice() + .sort((a, b) => a.start_ms - b.start_ms) + .map((word) => word.text) + .join("") + .replace(/\s+/gu, " ") + .trim(); + }, + }); + return text; + }, + insert: async (text) => { + if (!disposed) unwrap(await dictation.insertText(target, text)); + }, + discard: async (path) => { + unwrap(await dictation.discardRecording(path)); + }, + onTranscript: (lastTranscript) => { + if (!disposed) useDictationStatus.setState({ lastTranscript }); + }, + onError, + onPhase: (phase) => { + if (!disposed) useDictationStatus.setState({ phase }); + presentation = presentation + .then(async () => { + try { + unwrap(await shortcuts.setActive(phase !== "idle" && !disposed)); + } catch (error) { + onError(error); + } + if (phase === "idle" || disposed) { + unwrap(await dictation.hide()); + } else { + unwrap( + await dictation.setPhase( + phase === "transcribing" ? "processing" : "recording", + ), + ); + unwrap(await dictation.show()); + } + }) + .catch(onError); + }, + }); + const cancel = () => { + abort.abort(); + void controller.cancel(); + void stopTranscription(id).catch(onError); + }; + + lifecycle = lifecycle + .then(async () => { + if (disposed) return; + unlisten = await events.shortcutEvent.listen(({ payload }) => { + if (disposed || !armed) return; + if (payload.type === "pressed") controller.press(); + else if (payload.type === "released") controller.release(); + else cancel(); + }); + if (disposed) { + unlisten(); + return; + } + unwrap(await shortcuts.configure(shortcut)); + armed = !disposed; + if (!disposed) + useDictationStatus.setState({ ready: true, error: null, cancel }); + }) + .catch(onError); + + return () => { + disposed = true; + armed = false; + unlisten?.(); + cancel(); + useDictationStatus.setState({ + ready: false, + phase: "idle", + lastTranscript: "", + cancel: null, + }); + lifecycle = lifecycle + .then(async () => { + unlisten?.(); + await controller.cancel(); + await presentation; + unwrap(await shortcuts.configure(null)); + unwrap(await dictation.hide()); + }) + .catch(() => {}); + }; + }); + return null; +} diff --git a/apps/desktop/src/i18n/locales/af/messages.po b/apps/desktop/src/i18n/locales/af/messages.po index 13ee8b46031..805f0d117c4 100644 --- a/apps/desktop/src/i18n/locales/af/messages.po +++ b/apps/desktop/src/i18n/locales/af/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Taal en streek" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/af/messages.ts b/apps/desktop/src/i18n/locales/af/messages.ts index 60292b89100..49bab407919 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Toepassing\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hooftaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Toepassing\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1cda355f972..191d90ba4d9 100644 --- a/apps/desktop/src/i18n/locales/am/messages.po +++ b/apps/desktop/src/i18n/locales/am/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ቋንቋ እና ክልል" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/am/messages.ts b/apps/desktop/src/i18n/locales/am/messages.ts index ebc1a9bbc3a..2e32433f9de 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ዋና ቋንቋ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ስብሰባ ሲጀምር ጀምር\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"የሚነገር ቋንቋ ያክሉ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"መተግበሪያ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ምንም ተዛማጅ ቋንቋዎች አልተገኙም\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 0bea770ffa4..11a37717f94 100644 --- a/apps/desktop/src/i18n/locales/ar/messages.po +++ b/apps/desktop/src/i18n/locales/ar/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "اللغة والمنطقة" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ar/messages.ts b/apps/desktop/src/i18n/locales/ar/messages.ts index b198be06244..151790d5089 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"التطبيق\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"لم يتم العثور على لغات مطابقة\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اللغة الرئيسية\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ابدأ عندما يبدأ الاجتماع\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"إضافة لغة منطوقة\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"التطبيق\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"لم يتم العثور على لغات مطابقة\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 4e04fa35f3b..633a06e8079 100644 --- a/apps/desktop/src/i18n/locales/as/messages.po +++ b/apps/desktop/src/i18n/locales/as/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ভাষা আৰু অঞ্চল" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/as/messages.ts b/apps/desktop/src/i18n/locales/as/messages.ts index a31352bc6b4..96bac1a4bf3 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"এপ্প\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"মূল ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং আৰম্ভ হ'লে আৰম্ভ কৰক\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথিত ভাষা যোগ কৰক\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"এপ্প\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"কোনো মিল থকা ভাষা পোৱা নগ'ল\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 606e45f664a..63420099a60 100644 --- a/apps/desktop/src/i18n/locales/az/messages.po +++ b/apps/desktop/src/i18n/locales/az/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Dil və Region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/az/messages.ts b/apps/desktop/src/i18n/locales/az/messages.ts index 64253e14254..98da437b3c6 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Tətbiq\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ı\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Tətbiq\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ı\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1845c0a9969..73adc315128 100644 --- a/apps/desktop/src/i18n/locales/ba/messages.po +++ b/apps/desktop/src/i18n/locales/ba/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Тел һәм төбәк" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ba/messages.ts b/apps/desktop/src/i18n/locales/ba/messages.ts index a9e9f706c3e..8ab0bbdfa04 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ҡушымта\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Тап килгән телдәр табылмаған\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Осрашыу башланғас башла\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Һөйләү телен өҫтәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ҡушымта\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Тап килгән телдәр табылмаған\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1318beb4849..b564f53fcdd 100644 --- a/apps/desktop/src/i18n/locales/be/messages.po +++ b/apps/desktop/src/i18n/locales/be/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Мова і рэгіён" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/be/messages.ts b/apps/desktop/src/i18n/locales/be/messages.ts index 8bf35441f6e..957733b6223 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Прыкладанне\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Не знойдзена адпаведных моў\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Асноўная мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Пачаць, калі пачынаецца сустрэча\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Дадаць гутарковую мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Прыкладанне\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Не знойдзена адпаведных моў\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 c0f8d61be0b..f08572377e2 100644 --- a/apps/desktop/src/i18n/locales/bg/messages.po +++ b/apps/desktop/src/i18n/locales/bg/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Език и регион" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bg/messages.ts b/apps/desktop/src/i18n/locales/bg/messages.ts index 8765189bf4f..7ab0284833e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Приложение\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Няма намерени съответстващи езици\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основен език\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете, когато срещата започне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавяне на говорим език\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Приложение\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Няма намерени съответстващи езици\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 e2fdd83f966..05957324357 100644 --- a/apps/desktop/src/i18n/locales/bn/messages.po +++ b/apps/desktop/src/i18n/locales/bn/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ভাষা ও অঞ্চল" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bn/messages.ts b/apps/desktop/src/i18n/locales/bn/messages.ts index 3d490690550..c67c80e859a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"অ্যাপ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"প্রধান ভাষা\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"মিটিং শুরু হলে শুরু করুন\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"কথ্য ভাষা যোগ করুন\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"অ্যাপ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"কোন মিলিত ভাষা পাওয়া যায়নি\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 7d931c1567e..66b1ac38b93 100644 --- a/apps/desktop/src/i18n/locales/bo/messages.po +++ b/apps/desktop/src/i18n/locales/bo/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "སྐད་ཡིག་དང་ས་ཁུལ།" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bo/messages.ts b/apps/desktop/src/i18n/locales/bo/messages.ts index f2dc1ec6d6f..7858e4e7777 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"སྐད་ཡིག་གཙོ་བོ།\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ཚོགས་འདུ་འགོ་འཛུགས་སྐབས་འགོ་འཛུགས།\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"སྐད་ཆའི་སྐད་ཡིག་ཁ་སྣོན\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"མཉེན་ཆས།\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"མཐུན་པའི་སྐད་ཡིག་མ་རྙེད།\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 caa408e09d5..b0e3fd4665f 100644 --- a/apps/desktop/src/i18n/locales/br/messages.po +++ b/apps/desktop/src/i18n/locales/br/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Yezh & Rannvro" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/br/messages.ts b/apps/desktop/src/i18n/locales/br/messages.ts index f5958f1274f..a83c965af86 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Arload\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Arload\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f15609db767..eeb80023f5d 100644 --- a/apps/desktop/src/i18n/locales/bs/messages.po +++ b/apps/desktop/src/i18n/locales/bs/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Jezik i regija" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/bs/messages.ts b/apps/desktop/src/i18n/locales/bs/messages.ts index 300b64d7a41..991e71852f8 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 b0719874df6..7b932e8dbad 100644 --- a/apps/desktop/src/i18n/locales/ca/messages.po +++ b/apps/desktop/src/i18n/locales/ca/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Idioma i regió" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ca/messages.ts b/apps/desktop/src/i18n/locales/ca/messages.ts index 1599fb0c5d7..2fdd25984d6 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicació\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicació\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 378fd5451f9..fc9b5c41552 100644 --- a/apps/desktop/src/i18n/locales/cs/messages.po +++ b/apps/desktop/src/i18n/locales/cs/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Jazyk a oblast" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/cs/messages.ts b/apps/desktop/src/i18n/locales/cs/messages.ts index 9202c3dfa0d..d04a09a6e7e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikace\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikace\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 01d11c75793..d44d3c15a92 100644 --- a/apps/desktop/src/i18n/locales/cy/messages.po +++ b/apps/desktop/src/i18n/locales/cy/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Iaith a Rhanbarth" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/cy/messages.ts b/apps/desktop/src/i18n/locales/cy/messages.ts index 2e98773bf94..a940ec7ba6b 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ap\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ap\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 c7cbd118d3b..ffdf18e9393 100644 --- a/apps/desktop/src/i18n/locales/da/messages.po +++ b/apps/desktop/src/i18n/locales/da/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Sprog og region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/da/messages.ts b/apps/desktop/src/i18n/locales/da/messages.ts index a744fae444c..78421cce48a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hovedsprog\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 09d6baf81f8..672b514213d 100644 --- a/apps/desktop/src/i18n/locales/de/messages.po +++ b/apps/desktop/src/i18n/locales/de/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Sprache & Region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/de/messages.ts b/apps/desktop/src/i18n/locales/de/messages.ts index c20cd7e2d96..b3fbe81f1fc 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hauptsprache\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 7ecd03bedac..3cc6727e2b3 100644 --- a/apps/desktop/src/i18n/locales/el/messages.po +++ b/apps/desktop/src/i18n/locales/el/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Γλώσσα και περιοχή" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/el/messages.ts b/apps/desktop/src/i18n/locales/el/messages.ts index a7ecf358405..9ec1c3f1a7d 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Κύρια γλώσσα\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Ξεκινήστε όταν ξεκινά η σύσκεψη\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Προσθήκη προφορικής γλώσσας\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Εφαρμογή\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Δεν βρέθηκαν γλώσσες που να ταιριάζουν\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 9a1f053cc54..eafdf82748c 100644 --- a/apps/desktop/src/i18n/locales/en/messages.po +++ b/apps/desktop/src/i18n/locales/en/messages.po @@ -934,6 +934,10 @@ msgstr "Cancel bot" msgid "Cancel date edit" msgstr "Cancel date edit" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "Cancel dictation" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "Cancel invitation" @@ -1183,6 +1187,7 @@ msgstr "Choose storage location" msgid "Choose template icon" msgstr "Choose template icon" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "Choose the microphone that captures your voice." @@ -1234,6 +1239,10 @@ msgstr "Clear selection" msgid "CLI & MCP" msgstr "CLI & MCP" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "Click here, then use your dictation shortcut." + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "Clone" @@ -1560,6 +1569,10 @@ msgstr "Conversations per active day" msgid "Conversations: {total}" msgstr "Conversations: {total}" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "Copied" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "Copy {label} URL" msgid "Copy config" msgstr "Copy config" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "Copy last dictation" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "Could not copy the MCP configuration" msgid "Could not copy the share link." msgstr "Could not copy the share link." +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "Could not copy the transcript. Select the text above to copy it." + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "Could not copy to clipboard" @@ -2053,6 +2074,20 @@ msgstr "Device name" msgid "Devices" msgstr "Devices" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "Dictation" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "Dictation shortcut" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "Enable {0}" msgid "Enable Cloud API & Connectors" msgstr "Enable Cloud API & Connectors" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "Enable dictation" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "Flags" msgid "Float chat" msgstr "Float chat" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "Fn / Globe" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "guest@company.com" msgid "Guide" msgstr "Guide" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "Hands-free dictation" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "Have Anarlog ready when you sign in." @@ -2654,6 +2701,10 @@ msgstr "History" msgid "History {0}/{1}" msgstr "History {0}/{1}" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "Hold your shortcut while speaking, then release it to finish." + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "Hours transcribed" @@ -2855,6 +2906,10 @@ msgstr "Join scheduled meetings" msgid "Joined {0}" msgstr "Joined {0}" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "Keep Anarlog running to use your shortcut in other apps." + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "Keep desktop edits" @@ -2899,6 +2954,10 @@ msgstr "Kimi Code API key" msgid "Language & Region" msgstr "Language & Region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "Language & transcription" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "Language model needed" @@ -2908,6 +2967,10 @@ msgstr "Language model needed" msgid "Last delivery {0}" msgstr "Last delivery {0}" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "Last dictation" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "LinkedIn" msgid "List action items." msgstr "List action items." +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "Listening…" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "Little steps worth keeping. Collect them at your own pace." @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "Metadata" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "Older files that differ from your current data were kept as recovery cop msgid "Oldest" msgstr "Oldest" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "On-device models can take a few minutes to warm up before text appears." @@ -3916,6 +3988,7 @@ msgstr "Permission for {label}" msgid "permission panel." msgstr "permission panel." +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "Prepare for events with a 5-minute reminder." msgid "Preparing transcript..." msgstr "Preparing transcript..." +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "Press a key combination here, or type one such as Control+Alt+D." + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "Press your shortcut to start, then press it again to finish." + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "Prevent selected apps from triggering meeting detection." @@ -4057,6 +4142,10 @@ msgstr "Read meeting controls and visible chat." msgid "Ready" msgstr "Ready" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "Ready to dictate" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "Ready to go" @@ -4406,6 +4495,10 @@ msgstr "Retention (days)" msgid "Retry" msgstr "Retry" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "Retry setup" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "Review memo" @@ -4422,6 +4515,10 @@ msgstr "Review transfer" msgid "Revoke" msgstr "Revoke" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "Right Command" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "Runs after the recording finishes, not during the meeting." msgid "Runs once the AI summary for the meeting is ready." msgstr "Runs once the AI summary for the meeting is ready." +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "Set up AI summaries" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "Set up your recovery key to start encrypted cloud sync." +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "Setting up dictation…" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "Setting up encrypted cloud sync." @@ -5099,6 +5201,10 @@ msgstr "Sound" msgid "Sparkle" msgstr "Sparkle" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "Speak into the focused text field in your apps. Your transcript appears when you finish." + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "SQLite migration verification is incomplete" @@ -5171,6 +5277,10 @@ msgstr "Starting in {minutesUntil} minutes" msgid "Starting in 1 minute" msgstr "Starting in 1 minute" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "Starting microphone…" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "Starting transcription..." @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "Transcribing voice input" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "Transcribing…" @@ -5652,6 +5763,10 @@ msgstr "Trigger" msgid "Try again" msgstr "Try again" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "Try dictation" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "Try speaking a little closer to the microphone." diff --git a/apps/desktop/src/i18n/locales/en/messages.ts b/apps/desktop/src/i18n/locales/en/messages.ts index e4b09aef63b..8c873706a8f 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 6fa1a438fe0..517f4048e4a 100644 --- a/apps/desktop/src/i18n/locales/es/messages.po +++ b/apps/desktop/src/i18n/locales/es/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Idioma y región" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/es/messages.ts b/apps/desktop/src/i18n/locales/es/messages.ts index dfe8c6d7d59..439d9ebcb89 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicación\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicación\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 0153de72243..39eea693672 100644 --- a/apps/desktop/src/i18n/locales/et/messages.po +++ b/apps/desktop/src/i18n/locales/et/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Keel ja piirkond" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/et/messages.ts b/apps/desktop/src/i18n/locales/et/messages.ts index 0867d6d7ac7..ff792e89706 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Rakendus\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Rakendus\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 d3849cadd46..843b0a47b2a 100644 --- a/apps/desktop/src/i18n/locales/eu/messages.po +++ b/apps/desktop/src/i18n/locales/eu/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Hizkuntza eta eskualdea" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/eu/messages.ts b/apps/desktop/src/i18n/locales/eu/messages.ts index cb78d25f087..47939cecccf 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikazioa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikazioa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 753f48d6e38..8be0d2667b1 100644 --- a/apps/desktop/src/i18n/locales/fa/messages.po +++ b/apps/desktop/src/i18n/locales/fa/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "زبان و منطقه" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fa/messages.ts b/apps/desktop/src/i18n/locales/fa/messages.ts index e256bfa6c4b..08d7b0eea67 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"برنامه\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"زبان اصلی\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"با شروع جلسه شروع شود\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"افزودن زبان گفتاری\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"برنامه\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"هیچ زبان منطبقی یافت نشد\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 dc4cd0ff48e..6df8fa91192 100644 --- a/apps/desktop/src/i18n/locales/ff/messages.po +++ b/apps/desktop/src/i18n/locales/ff/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ɗemngal e Diiwaan" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ff/messages.ts b/apps/desktop/src/i18n/locales/ff/messages.ts index 57df170ab7e..8d3cb854b26 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Kuutorgal\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Kuutorgal\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 ea6c904c361..513c4028507 100644 --- a/apps/desktop/src/i18n/locales/fi/messages.po +++ b/apps/desktop/src/i18n/locales/fi/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Kieli ja alue" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fi/messages.ts b/apps/desktop/src/i18n/locales/fi/messages.ts index 2452c86db80..b2c73b3332c 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Sovellus\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Sovellus\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 7defcc76905..b0303705580 100644 --- a/apps/desktop/src/i18n/locales/fo/messages.po +++ b/apps/desktop/src/i18n/locales/fo/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Mál og øki" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fo/messages.ts b/apps/desktop/src/i18n/locales/fo/messages.ts index fd7408eb03c..d9479dbc5d4 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Forrit\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ð\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Forrit\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ð\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 81983c44f3e..fec7be058cd 100644 --- a/apps/desktop/src/i18n/locales/fr/messages.po +++ b/apps/desktop/src/i18n/locales/fr/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Langue et région" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/fr/messages.ts b/apps/desktop/src/i18n/locales/fr/messages.ts index 62cf35c596e..9fe446a98b5 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Application\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Application\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 af70008a976..386bb88add1 100644 --- a/apps/desktop/src/i18n/locales/ga/messages.po +++ b/apps/desktop/src/i18n/locales/ga/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Teanga & Réigiún" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ga/messages.ts b/apps/desktop/src/i18n/locales/ga/messages.ts index 7c7ef7b9c97..c94c9e1c959 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aip\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aip\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 be0773ac838..2a753b2b552 100644 --- a/apps/desktop/src/i18n/locales/gl/messages.po +++ b/apps/desktop/src/i18n/locales/gl/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Idioma e rexión" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/gl/messages.ts b/apps/desktop/src/i18n/locales/gl/messages.ts index 27785e83895..c4f014a2309 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicación\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicación\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 6e58e532b40..17391cf3fd8 100644 --- a/apps/desktop/src/i18n/locales/gu/messages.po +++ b/apps/desktop/src/i18n/locales/gu/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ભાષા અને પ્રદેશ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/gu/messages.ts b/apps/desktop/src/i18n/locales/gu/messages.ts index 61398af0d40..8b5fbc54fdf 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"એપ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"મુખ્ય ભાષા\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"મીટિંગ શરૂ થાય ત્યારે શરૂ કરો\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"બોલાતી ભાષા ઉમેરો\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"એપ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"કોઈ મેળ ખાતી ભાષાઓ મળી નથી\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 99b5ddd19bb..5499f57c37f 100644 --- a/apps/desktop/src/i18n/locales/ha/messages.po +++ b/apps/desktop/src/i18n/locales/ha/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Harshe & Yanki" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ha/messages.ts b/apps/desktop/src/i18n/locales/ha/messages.ts index 35fba5b4af9..a85c9059a08 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f1972a12b18..69ef7499825 100644 --- a/apps/desktop/src/i18n/locales/he/messages.po +++ b/apps/desktop/src/i18n/locales/he/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "שפה ואזור" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/he/messages.ts b/apps/desktop/src/i18n/locales/he/messages.ts index 5eeb4f1f503..cc963833a92 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"אפליקציה\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"לא נמצאו שפות מתאימות\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"שפה ראשית\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"התחל כאשר הפגישה מתחילה\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"הוסף שפה מדוברת\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"אפליקציה\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"לא נמצאו שפות מתאימות\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 172d4324e1d..0345df54f63 100644 --- a/apps/desktop/src/i18n/locales/hi/messages.po +++ b/apps/desktop/src/i18n/locales/hi/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "भाषा एवं क्षेत्र" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hi/messages.ts b/apps/desktop/src/i18n/locales/hi/messages.ts index 1b0b8edc43b..cdc43333fd7 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ऐप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग शुरू होने पर प्रारंभ करें\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोली जाने वाली भाषा जोड़ें\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ऐप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कोई मेल खाती भाषा नहीं मिली\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 4339a6333a4..c1980639e48 100644 --- a/apps/desktop/src/i18n/locales/hr/messages.po +++ b/apps/desktop/src/i18n/locales/hr/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Jezik i regija" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hr/messages.ts b/apps/desktop/src/i18n/locales/hr/messages.ts index 4b5453cc706..ffb5599f1df 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 eca20922ed6..61c3163686f 100644 --- a/apps/desktop/src/i18n/locales/ht/messages.po +++ b/apps/desktop/src/i18n/locales/ht/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lang ak Rejyon" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ht/messages.ts b/apps/desktop/src/i18n/locales/ht/messages.ts index 3a5a7d9da99..48a2564279f 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasyon\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasyon\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 bb04b41633b..32145d4c848 100644 --- a/apps/desktop/src/i18n/locales/hu/messages.po +++ b/apps/desktop/src/i18n/locales/hu/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Nyelv és régió" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hu/messages.ts b/apps/desktop/src/i18n/locales/hu/messages.ts index 5ed5fd895db..786edb925f8 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Alkalmazás\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Alkalmazás\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 68d3a6865c6..0c209e35e60 100644 --- a/apps/desktop/src/i18n/locales/hy/messages.po +++ b/apps/desktop/src/i18n/locales/hy/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Լեզուն և տարածաշրջանը" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/hy/messages.ts b/apps/desktop/src/i18n/locales/hy/messages.ts index 23e12892559..9b68a5066ce 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Հավելված\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Հիմնական լեզու\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Սկսել, երբ հանդիպումը սկսվի\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ավելացնել խոսակցական լեզու\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Հավելված\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Համապատասխան լեզուներ չեն գտնվել\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 7b4817d1fc2..b6ec7969570 100644 --- a/apps/desktop/src/i18n/locales/id/messages.po +++ b/apps/desktop/src/i18n/locales/id/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Bahasa & Wilayah" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/id/messages.ts b/apps/desktop/src/i18n/locales/id/messages.ts index 180aa9e66f8..e15259d55d1 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 d6fde5adcdd..b67bd880f83 100644 --- a/apps/desktop/src/i18n/locales/ig/messages.po +++ b/apps/desktop/src/i18n/locales/ig/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Asụsụ & Mpaghara" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ig/messages.ts b/apps/desktop/src/i18n/locales/ig/messages.ts index 87891d86d5e..2b11e483561 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ngwa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ụ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ngwa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ụ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 9d5d8d3b8c2..65583129ea4 100644 --- a/apps/desktop/src/i18n/locales/is/messages.po +++ b/apps/desktop/src/i18n/locales/is/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Tungumál og svæði" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/is/messages.ts b/apps/desktop/src/i18n/locales/is/messages.ts index bdbcd23220e..25d02a78455 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 896ddb7b433..61cfe7ff48a 100644 --- a/apps/desktop/src/i18n/locales/it/messages.po +++ b/apps/desktop/src/i18n/locales/it/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lingua e regione" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/it/messages.ts b/apps/desktop/src/i18n/locales/it/messages.ts index 4a8c8158a58..a9811d895d4 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 102a7742c78..5d62a6a99f1 100644 --- a/apps/desktop/src/i18n/locales/ja/messages.po +++ b/apps/desktop/src/i18n/locales/ja/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "言語と地域" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ja/messages.ts b/apps/desktop/src/i18n/locales/ja/messages.ts index 307e3da2433..126ae9ea42e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"アプリ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"一致する言語が見つかりません\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"メイン言語\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会議開始時に開始\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"音声言語を追加\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"アプリ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"一致する言語が見つかりません\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 c2b4126d3c5..dc14654ba58 100644 --- a/apps/desktop/src/i18n/locales/jv/messages.po +++ b/apps/desktop/src/i18n/locales/jv/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Basa & Wilayah" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/jv/messages.ts b/apps/desktop/src/i18n/locales/jv/messages.ts index 3e6a8146ed8..c5eaccb23c4 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 df4cc0ff464..c9d9874bf21 100644 --- a/apps/desktop/src/i18n/locales/ka/messages.po +++ b/apps/desktop/src/i18n/locales/ka/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ენა და რეგიონი" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ka/messages.ts b/apps/desktop/src/i18n/locales/ka/messages.ts index 5e5dd217077..def8d124a8a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"აპი\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"მთავარი ენა\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"დაიწყეთ შეხვედრის დაწყებისთანავე\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"სალაპარაკო ენის დამატება\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"აპი\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"შესაბამისი ენები ვერ მოიძებნა\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f09f27c1809..330346fb63d 100644 --- a/apps/desktop/src/i18n/locales/kk/messages.po +++ b/apps/desktop/src/i18n/locales/kk/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Тіл және аймақ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/kk/messages.ts b/apps/desktop/src/i18n/locales/kk/messages.ts index a1bb4357067..cbff5ab2639 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Қолданба\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Сәйкес тіл табылмады\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негізгі тіл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Кездесу басталғанда бастаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйлеу тілін қосу\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Қолданба\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Сәйкес тіл табылмады\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 3c3c8423490..b55456d3427 100644 --- a/apps/desktop/src/i18n/locales/km/messages.po +++ b/apps/desktop/src/i18n/locales/km/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ភាសា និងតំបន់" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/km/messages.ts b/apps/desktop/src/i18n/locales/km/messages.ts index 7226aac5e56..3d6603cec5a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ភាសាចម្បង\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ចាប់ផ្តើមនៅពេលការប្រជុំចាប់ផ្តើម\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"បន្ថែមភាសានិយាយ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"កម្មវិធី\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"រកមិនឃើញភាសាដែលត្រូវគ្នាទេ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 e62f1e05ffa..d85bfe59966 100644 --- a/apps/desktop/src/i18n/locales/kn/messages.po +++ b/apps/desktop/src/i18n/locales/kn/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ಭಾಷೆ ಮತ್ತು ಪ್ರದೇಶ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/kn/messages.ts b/apps/desktop/src/i18n/locales/kn/messages.ts index 5f8b2ae7038..2cd5b35f278 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ಮುಖ್ಯ ಭಾಷೆ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ಸಭೆ ಪ್ರಾರಂಭವಾದಾಗ ಪ್ರಾರಂಭಿಸಿ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ಮಾತನಾಡುವ ಭಾಷೆಯನ್ನು ಸೇರಿಸಿ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ಅಪ್ಲಿಕೇಶನ್\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯ ಭಾಷೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f0331f5617e..8097b797041 100644 --- a/apps/desktop/src/i18n/locales/ko/messages.po +++ b/apps/desktop/src/i18n/locales/ko/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "언어 및 지역" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ko/messages.ts b/apps/desktop/src/i18n/locales/ko/messages.ts index d880dc07661..f0ed1b94533 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"앱\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"기본 언어\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"회의 시작 시 시작\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"음성 언어 추가\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"앱\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"일치하는 언어를 찾을 수 없습니다\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 507301b30c9..c5d8cc076a1 100644 --- a/apps/desktop/src/i18n/locales/ku/messages.po +++ b/apps/desktop/src/i18n/locales/ku/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ziman û Herêm" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ku/messages.ts b/apps/desktop/src/i18n/locales/ku/messages.ts index f98e7edf4db..d1037b6d1f1 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 bac34d727e8..b0eaa97046b 100644 --- a/apps/desktop/src/i18n/locales/ky/messages.po +++ b/apps/desktop/src/i18n/locales/ky/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Тил жана аймак" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ky/messages.ts b/apps/desktop/src/i18n/locales/ky/messages.ts index dd2f1ad1d01..8aac8a1c40b 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Колдонмо\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Дал келген тилдер табылган жок\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Негизги тил\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Жолугушуу башталганда баштаңыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Оозеки тилди кошуңуз\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Колдонмо\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Дал келген тилдер табылган жок\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 583d82f2b38..98b9c386624 100644 --- a/apps/desktop/src/i18n/locales/la/messages.po +++ b/apps/desktop/src/i18n/locales/la/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lingua & Regio" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/la/messages.ts b/apps/desktop/src/i18n/locales/la/messages.ts index b530f51add7..398af3d88eb 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 5ca00c0bcd1..68be7a9a0c7 100644 --- a/apps/desktop/src/i18n/locales/lb/messages.po +++ b/apps/desktop/src/i18n/locales/lb/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Sprooch & Regioun" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lb/messages.ts b/apps/desktop/src/i18n/locales/lb/messages.ts index 831283ac505..e9670a51f39 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Haaptsprooch\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 8e7f3a51b66..cd9e6fd93de 100644 --- a/apps/desktop/src/i18n/locales/lg/messages.po +++ b/apps/desktop/src/i18n/locales/lg/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Olulimi & Ekitundu" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lg/messages.ts b/apps/desktop/src/i18n/locales/lg/messages.ts index d52959ecd37..07e74b6efd8 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ekikozesebwa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 3a078631642..fb0f3523b46 100644 --- a/apps/desktop/src/i18n/locales/ln/messages.po +++ b/apps/desktop/src/i18n/locales/ln/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Monoko & Etuka" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ln/messages.ts b/apps/desktop/src/i18n/locales/ln/messages.ts index 91f825c65a5..1b51e1e89dd 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Esaleli\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Esaleli\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 921031da972..bccd8f72db0 100644 --- a/apps/desktop/src/i18n/locales/lo/messages.po +++ b/apps/desktop/src/i18n/locales/lo/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ພາສາ ແລະພາກພື້ນ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lo/messages.ts b/apps/desktop/src/i18n/locales/lo/messages.ts index be616b0f5cb..5f14751d5db 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ແອັບ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ພາສາຫຼັກ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ເລີ່ມເມື່ອການປະຊຸມເລີ່ມຕົ້ນ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ເພີ່ມພາສາເວົ້າ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ແອັບ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ບໍ່ພົບພາສາທີ່ກົງກັນ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 9e73fda1f32..f9f6c56e67f 100644 --- a/apps/desktop/src/i18n/locales/lt/messages.po +++ b/apps/desktop/src/i18n/locales/lt/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Kalba ir regionas" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lt/messages.ts b/apps/desktop/src/i18n/locales/lt/messages.ts index a477404d82d..35d8ca4108e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Programa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ų\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Programa\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ų\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 a223f9a4c0f..c94ddfe67ef 100644 --- a/apps/desktop/src/i18n/locales/lv/messages.po +++ b/apps/desktop/src/i18n/locales/lv/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Valoda un reģions" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/lv/messages.ts b/apps/desktop/src/i18n/locales/lv/messages.ts index 943e8a1e1ff..09bfd7a8056 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Lietotne\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Lietotne\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f242087eefa..125731fcf79 100644 --- a/apps/desktop/src/i18n/locales/mg/messages.po +++ b/apps/desktop/src/i18n/locales/mg/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Fiteny & Faritra" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mg/messages.ts b/apps/desktop/src/i18n/locales/mg/messages.ts index 01a06655ebd..3a4e697c367 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 8fe491e307f..0aa44911dee 100644 --- a/apps/desktop/src/i18n/locales/mi/messages.po +++ b/apps/desktop/src/i18n/locales/mi/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Reo me te Rohe" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mi/messages.ts b/apps/desktop/src/i18n/locales/mi/messages.ts index 38f98ce3c56..0097208e193 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Taupānga\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Taupānga\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 0fd43c0ddde..73c9d465ad4 100644 --- a/apps/desktop/src/i18n/locales/mk/messages.po +++ b/apps/desktop/src/i18n/locales/mk/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Јазик и регион" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mk/messages.ts b/apps/desktop/src/i18n/locales/mk/messages.ts index 455d0ddbd64..0caa7a3713a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Апликација\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главен јазик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Започнете кога ќе започне состанокот\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорен јазик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Апликација\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Не се најдени јазици што се совпаѓаат\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 552df5dde37..8e845f33131 100644 --- a/apps/desktop/src/i18n/locales/ml/messages.po +++ b/apps/desktop/src/i18n/locales/ml/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ഭാഷയും പ്രദേശവും" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ml/messages.ts b/apps/desktop/src/i18n/locales/ml/messages.ts index 9d11ce81084..fda70f3a0b9 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"പ്രധാന ഭാഷ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"മീറ്റിംഗ് ആരംഭിക്കുമ്പോൾ ആരംഭിക്കുക\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"സംസാരിക്കുന്ന ഭാഷ ചേർക്കുക\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ആപ്പ്\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"പൊരുത്തമുള്ള ഭാഷകളൊന്നും കണ്ടെത്തിയില്ല\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 654dfa82111..7c7a962402c 100644 --- a/apps/desktop/src/i18n/locales/mn/messages.po +++ b/apps/desktop/src/i18n/locales/mn/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Хэл ба бүс" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mn/messages.ts b/apps/desktop/src/i18n/locales/mn/messages.ts index c5b41e0ea55..71f9e816e45 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Програм\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Тохирох хэл олдсонгүй\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Үндсэн хэл\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Уулзалт эхлэхэд эхэл\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Ярианы хэл нэмэх\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Програм\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Тохирох хэл олдсонгүй\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 27d19e39f88..0d4e1b785cb 100644 --- a/apps/desktop/src/i18n/locales/mr/messages.po +++ b/apps/desktop/src/i18n/locales/mr/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "भाषा आणि प्रदेश" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mr/messages.ts b/apps/desktop/src/i18n/locales/mr/messages.ts index 17f2da0e13a..6a6b36226e6 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ॲप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"मीटिंग सुरू झाल्यावर सुरू करा\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोलीची भाषा जोडा\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ॲप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कोणत्याही जुळणारी भाषा आढळली नाही\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 f90075adbb3..3fbe47a1f89 100644 --- a/apps/desktop/src/i18n/locales/ms/messages.po +++ b/apps/desktop/src/i18n/locales/ms/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Bahasa & Wilayah" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ms/messages.ts b/apps/desktop/src/i18n/locales/ms/messages.ts index fbe78ebdd28..5a2ad42185a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Apl\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Apl\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 3879e990d9e..3b6d4e36d01 100644 --- a/apps/desktop/src/i18n/locales/mt/messages.po +++ b/apps/desktop/src/i18n/locales/mt/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lingwa u Reġjun" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/mt/messages.ts b/apps/desktop/src/i18n/locales/mt/messages.ts index d880dde62c4..b5af8ef1c1e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 70a890b5b61..2cce65ef84e 100644 --- a/apps/desktop/src/i18n/locales/my/messages.po +++ b/apps/desktop/src/i18n/locales/my/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ဘာသာစကားနှင့် ဒေသ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/my/messages.ts b/apps/desktop/src/i18n/locales/my/messages.ts index 1e73498e5d7..696128249ec 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"အက်ပ်\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ပင်မဘာသာစကား\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"အစည်းအဝေးစတင်သည့်အခါ စတင်ပါ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ပြောသောဘာသာစကားကို ထည့်ပါ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"အက်ပ်\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"တူညီသောဘာသာစကားများကိုမတွေ့ပါ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 68ff88b1a62..74781600000 100644 --- a/apps/desktop/src/i18n/locales/ne/messages.po +++ b/apps/desktop/src/i18n/locales/ne/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "भाषा र क्षेत्र" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ne/messages.ts b/apps/desktop/src/i18n/locales/ne/messages.ts index e797f69cbac..6b77dcb6cd8 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"एप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्य भाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"बैठक सुरु हुँदा सुरु गर्नुहोस्\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"बोल्ने भाषा थप्नुहोस्\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"एप\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"कुनै मिल्दो भाषा भेटिएन\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 00c6d126d02..bb3be23779d 100644 --- a/apps/desktop/src/i18n/locales/nl/messages.po +++ b/apps/desktop/src/i18n/locales/nl/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Taal en regio" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/nl/messages.ts b/apps/desktop/src/i18n/locales/nl/messages.ts index 537302828fe..b5d2aeb0bea 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Hoofdtaal\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 2c1f0a22aa4..b30fef7bed5 100644 --- a/apps/desktop/src/i18n/locales/nn/messages.po +++ b/apps/desktop/src/i18n/locales/nn/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Språk og region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/nn/messages.ts b/apps/desktop/src/i18n/locales/nn/messages.ts index fde00eb29c8..69d79ea9c54 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 ed8747878a3..8b75586d989 100644 --- a/apps/desktop/src/i18n/locales/no/messages.po +++ b/apps/desktop/src/i18n/locales/no/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Språk og region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/no/messages.ts b/apps/desktop/src/i18n/locales/no/messages.ts index fde00eb29c8..69d79ea9c54 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 669d45a5c67..7ca8eaecca2 100644 --- a/apps/desktop/src/i18n/locales/ny/messages.po +++ b/apps/desktop/src/i18n/locales/ny/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Chinenero & Chigawo" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ny/messages.ts b/apps/desktop/src/i18n/locales/ny/messages.ts index 92bc91a7e4a..3a21a8468d2 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Mapulogalamu\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 9441f77274d..41d3b888715 100644 --- a/apps/desktop/src/i18n/locales/oc/messages.po +++ b/apps/desktop/src/i18n/locales/oc/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lenga & Region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/oc/messages.ts b/apps/desktop/src/i18n/locales/oc/messages.ts index e4e6afcbfbd..b952bea6ccd 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicacion\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicacion\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 15518b4db0f..962a69614ba 100644 --- a/apps/desktop/src/i18n/locales/or/messages.po +++ b/apps/desktop/src/i18n/locales/or/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ଭାଷା ଏବଂ ଅଞ୍ଚଳ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/or/messages.ts b/apps/desktop/src/i18n/locales/or/messages.ts index 1601176ccd1..584f7c2fbd7 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ଆପ୍\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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 ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ମୁଖ୍ୟ ଭାଷା |\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ସଭା ଆରମ୍ଭ ହେବା ପରେ ଆରମ୍ଭ କରନ୍ତୁ |\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"କଥିତ ଭାଷା ଯୋଡନ୍ତୁ |\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ଆପ୍\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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 ଣସି ମେଳକ ଭାଷା ମିଳିଲା ନାହିଁ |\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 15fa49d91ce..b41a2624a39 100644 --- a/apps/desktop/src/i18n/locales/pa/messages.po +++ b/apps/desktop/src/i18n/locales/pa/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ਭਾਸ਼ਾ ਅਤੇ ਖੇਤਰ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pa/messages.ts b/apps/desktop/src/i18n/locales/pa/messages.ts index be11123269b..75f75d52b0a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ਐਪ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ਮੁੱਖ ਭਾਸ਼ਾ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"ਮੀਟਿੰਗ ਸ਼ੁਰੂ ਹੋਣ 'ਤੇ ਸ਼ੁਰੂ ਕਰੋ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ਬੋਲੀ ਜਾਣ ਵਾਲੀ ਭਾਸ਼ਾ ਸ਼ਾਮਲ ਕਰੋ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ਐਪ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ਕੋਈ ਮੇਲ ਖਾਂਦੀ ਭਾਸ਼ਾ ਨਹੀਂ ਮਿਲੀ\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 27806da3521..20cbe7b6f16 100644 --- a/apps/desktop/src/i18n/locales/pl/messages.po +++ b/apps/desktop/src/i18n/locales/pl/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Język i region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pl/messages.ts b/apps/desktop/src/i18n/locales/pl/messages.ts index 0c24be3b871..57834f549fa 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacja\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacja\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 44ea82d1c3e..0d305dbf34f 100644 --- a/apps/desktop/src/i18n/locales/ps/messages.po +++ b/apps/desktop/src/i18n/locales/ps/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ژبه او سیمه" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ps/messages.ts b/apps/desktop/src/i18n/locales/ps/messages.ts index e0abbea080a..6de0d7082e1 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ایپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"اصلي ژبه\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"کله چې ناسته پیل شي پیل کړئ\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"د ویل شوي ژبه اضافه کړئ\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ایپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"هیڅ ورته ژبه ونه موندل شوه\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1f88eb071fd..c89d1045aab 100644 --- a/apps/desktop/src/i18n/locales/pt/messages.po +++ b/apps/desktop/src/i18n/locales/pt/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Idioma e região" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/pt/messages.ts b/apps/desktop/src/i18n/locales/pt/messages.ts index d1cdd0d0c2d..e07d0052029 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicativo\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicativo\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 c1eabab4b36..eba6db5e409 100644 --- a/apps/desktop/src/i18n/locales/ro/messages.po +++ b/apps/desktop/src/i18n/locales/ro/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Limbă și regiune" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ro/messages.ts b/apps/desktop/src/i18n/locales/ro/messages.ts index 3b33aff7ddf..6a60c55b7a5 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicație\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplicație\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 aa374f91dee..a71e42474a6 100644 --- a/apps/desktop/src/i18n/locales/ru/messages.po +++ b/apps/desktop/src/i18n/locales/ru/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Язык и регион" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ru/messages.ts b/apps/desktop/src/i18n/locales/ru/messages.ts index 9a6889524eb..99c6fe0455a 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Приложение\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Подходящие языки не найдены\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основной язык\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Начать, когда начнется собрание\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Добавить разговорный язык\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Приложение\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Подходящие языки не найдены\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1165aaf1b27..a113d809fc4 100644 --- a/apps/desktop/src/i18n/locales/sa/messages.po +++ b/apps/desktop/src/i18n/locales/sa/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "भाषा एवं क्षेत्र" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sa/messages.ts b/apps/desktop/src/i18n/locales/sa/messages.ts index 01e84051b3c..0f80c237d13 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"न सङ्गतभाषा लभ्यते\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"मुख्यभाषा\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"समागमस्य आरम्भे आरभत\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"भाषितभाषा योजयतु\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"अनुप्रयोग\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"न सङ्गतभाषा लभ्यते\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 80653581214..56059d8fd64 100644 --- a/apps/desktop/src/i18n/locales/sd/messages.po +++ b/apps/desktop/src/i18n/locales/sd/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ٻولي ۽ علائقو" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sd/messages.ts b/apps/desktop/src/i18n/locales/sd/messages.ts index ecd4e5e23d7..26321319031 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ايپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مکيه ٻولي\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"شروع ڪريو جڏهن ميٽنگ شروع ٿئي\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"ڳالهائيندڙ ٻولي شامل ڪريو\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ايپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ڪابه ملندڙ ٻوليون نه مليون\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 a73cc6bd02a..0c0028d32a9 100644 --- a/apps/desktop/src/i18n/locales/si/messages.po +++ b/apps/desktop/src/i18n/locales/si/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "භාෂාව සහ කලාපය" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/si/messages.ts b/apps/desktop/src/i18n/locales/si/messages.ts index 6fc5946ce90..2a751fe1445 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"යෙදුම\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ප්‍රධාන භාෂාව\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"රැස්වීම ආරම්භ වන විට ආරම්භ කරන්න\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"කථන භාෂාව එක් කරන්න\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"යෙදුම\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ගැළපෙන භාෂා කිසිවක් හමු නොවීය\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 a05d2e9a7d9..726e38160cf 100644 --- a/apps/desktop/src/i18n/locales/sk/messages.po +++ b/apps/desktop/src/i18n/locales/sk/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Jazyk a oblasť" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sk/messages.ts b/apps/desktop/src/i18n/locales/sk/messages.ts index 093d0da3a06..292ee6ddf44 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikácia\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikácia\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 8116e506cbd..d29a36220d4 100644 --- a/apps/desktop/src/i18n/locales/sl/messages.po +++ b/apps/desktop/src/i18n/locales/sl/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Jezik in regija" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sl/messages.ts b/apps/desktop/src/i18n/locales/sl/messages.ts index c0c0578294c..2937494a399 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Odstranim člana?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Odstranim \",[\"0\"],\" iz delovnega prostora \",[\"workspaceName\"],\"? Dostop do tega delovnega prostora ne bo več mogoč.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Prekličem povabilo?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Prekličem povabilo za \",[\"0\"],\"? S tem povabilom se ne bo več mogoče pridružiti.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacija\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Odstranim člana?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Odstranim \",[\"0\"],\" iz delovnega prostora \",[\"workspaceName\"],\"? Dostop do tega delovnega prostora ne bo več mogoč.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Prekličem povabilo?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Prekličem povabilo za \",[\"0\"],\"? S tem povabilom se ne bo več mogoče pridružiti.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 c4773d935f8..0aaa2959013 100644 --- a/apps/desktop/src/i18n/locales/sn/messages.po +++ b/apps/desktop/src/i18n/locales/sn/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Mutauro & Nharaunda" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sn/messages.ts b/apps/desktop/src/i18n/locales/sn/messages.ts index fe3891111be..77224976a3e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 dcdb5401d31..2efb54a50a5 100644 --- a/apps/desktop/src/i18n/locales/so/messages.po +++ b/apps/desktop/src/i18n/locales/so/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Luqadda & Gobolka" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/so/messages.ts b/apps/desktop/src/i18n/locales/so/messages.ts index 9ab6e28aca8..60958ca5afb 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App-ka\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App-ka\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 032360ee878..f3102bfe485 100644 --- a/apps/desktop/src/i18n/locales/sq/messages.po +++ b/apps/desktop/src/i18n/locales/sq/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Gjuha dhe rajoni" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sq/messages.ts b/apps/desktop/src/i18n/locales/sq/messages.ts index 6f0c6a26e20..e97a4f79c13 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacioni\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikacioni\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 bd6d6b6fcbe..b7b2f21ceaf 100644 --- a/apps/desktop/src/i18n/locales/sr/messages.po +++ b/apps/desktop/src/i18n/locales/sr/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Језик и регион" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sr/messages.ts b/apps/desktop/src/i18n/locales/sr/messages.ts index ffc7252b3eb..dd59df259dd 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Апп\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Није пронађен ниједан одговарајући језик\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Главни језик\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почните када састанак почне\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додајте говорни језик\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Апп\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Није пронађен ниједан одговарајући језик\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 5fca9e4e867..d12f12bf523 100644 --- a/apps/desktop/src/i18n/locales/su/messages.po +++ b/apps/desktop/src/i18n/locales/su/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Basa & Wewengkon" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/su/messages.ts b/apps/desktop/src/i18n/locales/su/messages.ts index 66539edc15c..8a9285d2db1 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Aplikasi\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 bb5d0116b53..8b8c7ee3a40 100644 --- a/apps/desktop/src/i18n/locales/sv/messages.po +++ b/apps/desktop/src/i18n/locales/sv/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Språk och region" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sv/messages.ts b/apps/desktop/src/i18n/locales/sv/messages.ts index c2e717c716a..3d6699d24ce 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 3a521b3e182..212f56961ae 100644 --- a/apps/desktop/src/i18n/locales/sw/messages.po +++ b/apps/desktop/src/i18n/locales/sw/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Lugha na Eneo" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/sw/messages.ts b/apps/desktop/src/i18n/locales/sw/messages.ts index 0e3e0eefc54..c75e7e9e6a6 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Programu\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Programu\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 cab10119e65..c2c20fa52ce 100644 --- a/apps/desktop/src/i18n/locales/ta/messages.po +++ b/apps/desktop/src/i18n/locales/ta/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "மொழி & பகுதி" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ta/messages.ts b/apps/desktop/src/i18n/locales/ta/messages.ts index db79d5a67e3..5826b18cd71 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"முக்கிய மொழி\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"மீட்டிங் தொடங்கும் போது தொடங்கவும்\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"பேசும் மொழியைச் சேர்\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"பயன்பாடு\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"பொருந்தும் மொழிகள் எதுவும் இல்லை\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 ffb9fb2d7c3..d86815e422e 100644 --- a/apps/desktop/src/i18n/locales/te/messages.po +++ b/apps/desktop/src/i18n/locales/te/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "భాష & ప్రాంతం" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/te/messages.ts b/apps/desktop/src/i18n/locales/te/messages.ts index 5921bafc443..218e705cd5e 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"యాప్\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ప్రధాన భాష\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"సమావేశం ప్రారంభమైనప్పుడు ప్రారంభించండి\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"మాట్లాడే భాషను జోడించు\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"యాప్\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"సరిపోయే భాషలు ఏవీ కనుగొనబడలేదు\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 89227954a30..6b6d8471ee1 100644 --- a/apps/desktop/src/i18n/locales/tg/messages.po +++ b/apps/desktop/src/i18n/locales/tg/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Забон ва минтақа" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tg/messages.ts b/apps/desktop/src/i18n/locales/tg/messages.ts index 12a1a6b555e..582ddc051d5 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Барнома\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Забони асосӣ\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Вақте ки вохӯрӣ оғоз мешавад, оғоз кунед\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Забони гуфтугӯиро илова кунед\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Барнома\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Ягон забонҳои мувофиқ ёфт нашуд\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 63ca63431ad..17cbdb308f7 100644 --- a/apps/desktop/src/i18n/locales/th/messages.po +++ b/apps/desktop/src/i18n/locales/th/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "ภาษาและภูมิภาค" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/th/messages.ts b/apps/desktop/src/i18n/locales/th/messages.ts index fcbb386a53f..a24c87da307 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"แอป\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"ภาษาหลัก\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"เริ่มเมื่อการประชุมเริ่มต้นขึ้น\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"เพิ่มภาษาพูด\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"แอป\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"ไม่พบภาษาที่ตรงกัน\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 b2fe7b9388a..1831dc04fd6 100644 --- a/apps/desktop/src/i18n/locales/tk/messages.po +++ b/apps/desktop/src/i18n/locales/tk/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Dil we sebit" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tk/messages.ts b/apps/desktop/src/i18n/locales/tk/messages.ts index cbf56256bd6..7d355af5894 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"programma\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"programma\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 94f6bbeffea..b9b45f02486 100644 --- a/apps/desktop/src/i18n/locales/tl/messages.po +++ b/apps/desktop/src/i18n/locales/tl/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Wika at Rehiyon" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tl/messages.ts b/apps/desktop/src/i18n/locales/tl/messages.ts index 121f2273b9f..48679c455a7 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"App\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 3ceb05217ce..44d0650446e 100644 --- a/apps/desktop/src/i18n/locales/tr/messages.po +++ b/apps/desktop/src/i18n/locales/tr/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Dil ve Bölge" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tr/messages.ts b/apps/desktop/src/i18n/locales/tr/messages.ts index afec0c20b69..edb22fdef37 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Uygulama\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ı\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Uygulama\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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ı\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 272dced0d71..561cfb767fd 100644 --- a/apps/desktop/src/i18n/locales/tt/messages.po +++ b/apps/desktop/src/i18n/locales/tt/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Тел һәм Төбәк" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/tt/messages.ts b/apps/desktop/src/i18n/locales/tt/messages.ts index 8fab360fa14..e97af8e7750 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"кушымта\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Төп тел\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Очрашу башлангач башлагыз\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Сөйләм телен өстәү\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"кушымта\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Бер-берсенә туры килгән телләр табылмады\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1968903f895..c01488efaab 100644 --- a/apps/desktop/src/i18n/locales/uk/messages.po +++ b/apps/desktop/src/i18n/locales/uk/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Мова та регіон" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/uk/messages.ts b/apps/desktop/src/i18n/locales/uk/messages.ts index 2f5a46b9d32..ca005690679 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Програма\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Відповідних мов не знайдено\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"Основна мова\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"Почати під час зустрічі\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"Додати розмовну мову\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Програма\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"Відповідних мов не знайдено\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 e0a01848f32..9150f4f0ba8 100644 --- a/apps/desktop/src/i18n/locales/ur/messages.po +++ b/apps/desktop/src/i18n/locales/ur/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "زبان اور علاقہ" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/ur/messages.ts b/apps/desktop/src/i18n/locales/ur/messages.ts index f90bba35a61..22f0f1fbce7 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ایپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"مرکزی زبان\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"میٹنگ شروع ہونے پر شروع کریں\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"بولی جانے والی زبان شامل کریں\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"ایپ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"کوئی مماثل زبانیں نہیں ملی\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 5b22849158c..bafd75324b5 100644 --- a/apps/desktop/src/i18n/locales/uz/messages.po +++ b/apps/desktop/src/i18n/locales/uz/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Til va mintaqa" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/uz/messages.ts b/apps/desktop/src/i18n/locales/uz/messages.ts index a01cf7f9dc7..a27eaf11f31 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ilova\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ilova\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 786648d3f55..03f760728ca 100644 --- a/apps/desktop/src/i18n/locales/vi/messages.po +++ b/apps/desktop/src/i18n/locales/vi/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ngôn ngữ & Khu vực" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/vi/messages.ts b/apps/desktop/src/i18n/locales/vi/messages.ts index 4ee11593b2e..80ee41c6c57 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ứng dụng\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ứng dụng\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 495794cafa8..a14b028c9ed 100644 --- a/apps/desktop/src/i18n/locales/wo/messages.po +++ b/apps/desktop/src/i18n/locales/wo/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Làkk wi ak Réew mi" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/wo/messages.ts b/apps/desktop/src/i18n/locales/wo/messages.ts index 13a12e334e3..6b1fcedda0c 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Jëfekaay\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Jëfekaay\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 670d89a2376..3083ce7d779 100644 --- a/apps/desktop/src/i18n/locales/xh/messages.po +++ b/apps/desktop/src/i18n/locales/xh/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ulwimi & neNgingqi" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/xh/messages.ts b/apps/desktop/src/i18n/locales/xh/messages.ts index 3f7ce030368..64bb2718ea1 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Usetyenziso\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Usetyenziso\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 1e2c187568d..4375df75e2d 100644 --- a/apps/desktop/src/i18n/locales/yi/messages.po +++ b/apps/desktop/src/i18n/locales/yi/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "שפּראַך און געגנט" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/yi/messages.ts b/apps/desktop/src/i18n/locales/yi/messages.ts index cabb98c7386..afbb5357534 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"אַפּ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"הויפּט שפּראַך\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"אָנהייב ווען באַגעגעניש הייבט זיך אָן\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"צוגעבן גערעדט שפּראַך\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"אַפּ\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"קיין שטיפעריש שפראכן געפונען\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 5f68a0eba4a..aa19465eb77 100644 --- a/apps/desktop/src/i18n/locales/yo/messages.po +++ b/apps/desktop/src/i18n/locales/yo/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ede & Ekun" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/yo/messages.ts b/apps/desktop/src/i18n/locales/yo/messages.ts index fe05175d3d8..97b079f77ea 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ohun elo\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Ohun elo\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 bee448cd303..c23af24a47e 100644 --- a/apps/desktop/src/i18n/locales/zh/messages.po +++ b/apps/desktop/src/i18n/locales/zh/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "语言和地区" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/zh/messages.ts b/apps/desktop/src/i18n/locales/zh/messages.ts index 1c0de45db93..f86733aafda 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"应用\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"未找到匹配的语言\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"0DcKz5\":[\"Automation draft saved\"],\"0HO1mc\":[\"Downloading model\"],\"0JSgLI\":[\"Could not save the automation draft\"],\"0L47q7\":[\"主要语言\"],\"0Xl-cJ\":[\"Could not use the selected model\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"4Ul0G5\":[\"Cancel date edit\"],\"4VPspO\":[\"Lock Note\"],\"4jdW7Q\":[\"SQLite migration verification is incomplete\"],\"4s25Ax\":[\"Storage Updated\"],\"4s2NP-\":[\"Sign in for private repo access.\"],\"4w6oyH\":[\"会议开始时启动\"],\"5404Oo\":[\"Re-transcription failed\"],\"598XO1\":[\"Opening…\"],\"5Axkuk\":[\"Restoring cloud sync...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn action items into Linear issues\"],\"A1taO8\":[\"Search\"],\"A2N1zA\":[\"Auto summary format\"],\"A44ty5\":[\"Audio file retention\"],\"A5hiCy\":[\"Create template\"],\"ACiE81\":[\"Shared link · View only\"],\"ADZ1Xl\":[\"添加口语语言\"],\"AD_Tkk\":[\"You can\"],\"AFiU3D\":[\"Open AI Settings\"],\"AN21Xi\":[\"Could not remove the automation\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"应用\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\":[\"未找到匹配的语言\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")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 9bc6c186da0..8d13543445e 100644 --- a/apps/desktop/src/i18n/locales/zu/messages.po +++ b/apps/desktop/src/i18n/locales/zu/messages.po @@ -934,6 +934,10 @@ msgstr "" msgid "Cancel date edit" msgstr "" +#: src/settings/dictation.tsx +msgid "Cancel dictation" +msgstr "" + #: src/settings/team/index.tsx msgid "Cancel invitation" msgstr "" @@ -1183,6 +1187,7 @@ msgstr "" msgid "Choose template icon" msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx msgid "Choose the microphone that captures your voice." msgstr "" @@ -1234,6 +1239,10 @@ msgstr "" msgid "CLI & MCP" msgstr "" +#: src/settings/dictation.tsx +msgid "Click here, then use your dictation shortcut." +msgstr "" + #: src/shared/ui/resource-list/preview-header.tsx msgid "Clone" msgstr "" @@ -1560,6 +1569,10 @@ msgstr "" msgid "Conversations: {total}" msgstr "" +#: src/settings/dictation.tsx +msgid "Copied" +msgstr "" + #: src/main/windows-title-bar.tsx #: src/session/components/note-input/transcript/renderer/selection-menu.tsx #: src/settings/ai/llm/subscriptions/connect.tsx @@ -1576,6 +1589,10 @@ msgstr "" msgid "Copy config" msgstr "" +#: src/settings/dictation.tsx +msgid "Copy last dictation" +msgstr "" + #: src/session-sharing/draft-panel.tsx #: src/session-sharing/management-panel.tsx msgid "Copy link" @@ -1618,6 +1635,10 @@ msgstr "" msgid "Could not copy the share link." msgstr "" +#: src/settings/dictation.tsx +msgid "Could not copy the transcript. Select the text above to copy it." +msgstr "" + #: src/settings/developers/clipboard.ts msgid "Could not copy to clipboard" msgstr "" @@ -2053,6 +2074,20 @@ msgstr "" msgid "Devices" msgstr "" +#: src/settings/dictation.tsx +#: src/sidebar/settings.tsx +msgid "Dictation" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation shortcut" +msgstr "" + +#: src/settings/dictation.tsx +msgid "Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes." +msgstr "" + +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/sidebar/settings.tsx msgid "Dictionary" @@ -2211,6 +2246,10 @@ msgstr "" msgid "Enable Cloud API & Connectors" msgstr "" +#: src/settings/dictation.tsx +msgid "Enable dictation" +msgstr "" + #: src/settings/automations/index.tsx #: src/settings/automations/workflow-builder.tsx #: src/sidebar/automations.tsx @@ -2427,6 +2466,10 @@ msgstr "" msgid "Float chat" msgstr "" +#: src/settings/dictation.tsx +msgid "Fn / Globe" +msgstr "" + #: src/settings/appearance/sidebar-item-fields.tsx #: src/sidebar/note-filter-menu.tsx msgid "Folder" @@ -2576,6 +2619,10 @@ msgstr "" msgid "Guide" msgstr "" +#: src/settings/dictation.tsx +msgid "Hands-free dictation" +msgstr "" + #: src/settings/general/app-settings.tsx msgid "Have Anarlog ready when you sign in." msgstr "" @@ -2654,6 +2701,10 @@ msgstr "" msgid "History {0}/{1}" msgstr "" +#: src/settings/dictation.tsx +msgid "Hold your shortcut while speaking, then release it to finish." +msgstr "" + #: src/settings/stats/index.tsx msgid "Hours transcribed" msgstr "" @@ -2855,6 +2906,10 @@ msgstr "" msgid "Joined {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Keep Anarlog running to use your shortcut in other apps." +msgstr "" + #: src/session-sharing/management-panel.tsx msgid "Keep desktop edits" msgstr "" @@ -2899,6 +2954,10 @@ msgstr "" msgid "Language & Region" msgstr "Ulimi Nesifunda" +#: src/settings/dictation.tsx +msgid "Language & transcription" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Language model needed" msgstr "" @@ -2908,6 +2967,10 @@ msgstr "" msgid "Last delivery {0}" msgstr "" +#: src/settings/dictation.tsx +msgid "Last dictation" +msgstr "" + #. placeholder {0}: lastRun.imported #. placeholder {1}: lastRun.matched #: src/imports/screen.tsx @@ -2996,6 +3059,10 @@ msgstr "" msgid "List action items." msgstr "" +#: src/settings/dictation.tsx +msgid "Listening…" +msgstr "" + #: src/settings/stats/badge-collection.tsx msgid "Little steps worth keeping. Collect them at your own pace." msgstr "" @@ -3269,6 +3336,7 @@ msgid "Metadata" msgstr "" #: src/onboarding/permissions.tsx +#: src/settings/dictation.tsx #: src/settings/general/audio-settings.tsx #: src/settings/general/permissions.tsx msgid "Microphone" @@ -3672,6 +3740,10 @@ msgstr "" msgid "Oldest" msgstr "" +#: src/settings/dictation.tsx +msgid "On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field." +msgstr "" + #: src/session/components/note-input/enhanced/streaming.tsx msgid "On-device models can take a few minutes to warm up before text appears." msgstr "" @@ -3916,6 +3988,7 @@ msgstr "" msgid "permission panel." msgstr "" +#: src/settings/dictation.tsx #: src/settings/general/index.tsx #: src/settings/team/index.tsx #: src/sidebar/settings.tsx @@ -3988,6 +4061,18 @@ msgstr "" msgid "Preparing transcript..." msgstr "" +#: src/settings/dictation.tsx +msgid "Press a key combination here, or type one such as Control+Alt+D." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting." +msgstr "" + +#: src/settings/dictation.tsx +msgid "Press your shortcut to start, then press it again to finish." +msgstr "" + #: src/settings/general/notification.tsx msgid "Prevent selected apps from triggering meeting detection." msgstr "" @@ -4057,6 +4142,10 @@ msgstr "" msgid "Ready" msgstr "" +#: src/settings/dictation.tsx +msgid "Ready to dictate" +msgstr "" + #: src/onboarding/index.tsx msgid "Ready to go" msgstr "" @@ -4406,6 +4495,10 @@ msgstr "" msgid "Retry" msgstr "" +#: src/settings/dictation.tsx +msgid "Retry setup" +msgstr "" + #: src/session/components/pending-proposals-banner.tsx msgid "Review memo" msgstr "" @@ -4422,6 +4515,10 @@ msgstr "" msgid "Revoke" msgstr "" +#: src/settings/dictation.tsx +msgid "Right Command" +msgstr "" + #: src/settings/ai/shared/index.tsx #: src/settings/ai/stt/select.tsx msgid "Runs after the recording finishes, not during the meeting." @@ -4431,6 +4528,7 @@ msgstr "" msgid "Runs once the AI summary for the meeting is ready." msgstr "" +#: src/settings/dictation.tsx #: src/settings/dictionary/index.tsx #: src/settings/general/account-profile.tsx #: src/settings/sync/index.tsx @@ -4725,6 +4823,10 @@ msgstr "" msgid "Set up your recovery key to start encrypted cloud sync." msgstr "" +#: src/settings/dictation.tsx +msgid "Setting up dictation…" +msgstr "" + #: src/settings/sync/index.tsx msgid "Setting up encrypted cloud sync." msgstr "" @@ -5099,6 +5201,10 @@ msgstr "" msgid "Sparkle" msgstr "" +#: src/settings/dictation.tsx +msgid "Speak into the focused text field in your apps. Your transcript appears when you finish." +msgstr "" + #: src/settings/general/storage/legacy-cleanup.tsx msgid "SQLite migration verification is incomplete" msgstr "" @@ -5171,6 +5277,10 @@ msgstr "" msgid "Starting in 1 minute" msgstr "" +#: src/settings/dictation.tsx +msgid "Starting microphone…" +msgstr "" + #: src/sidebar/toast/registry.tsx msgid "Starting transcription..." msgstr "" @@ -5595,6 +5705,7 @@ msgid "Transcribing voice input" msgstr "" #: src/chat/components/input/index.tsx +#: src/settings/dictation.tsx msgid "Transcribing…" msgstr "" @@ -5652,6 +5763,10 @@ msgstr "" msgid "Try again" msgstr "" +#: src/settings/dictation.tsx +msgid "Try dictation" +msgstr "" + #: src/chat/components/input/use-dictation.ts msgid "Try speaking a little closer to the microphone." msgstr "" diff --git a/apps/desktop/src/i18n/locales/zu/messages.ts b/apps/desktop/src/i18n/locales/zu/messages.ts index cd81a866703..baad908cc98 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"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\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"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.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"zEqK2w\":[\"The page 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\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No 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.\"],\"-ztZcz\":[\"Your conversation patterns\"],\"0-BwxN\":[\"Cancel invitation\"],\"001NC6\":[\"Authenticate to continue.\"],\"02i3WU\":[\"Imports\"],\"03OoKp\":[\"Checking availability…\"],\"046xqO\":[[\"count\"],\" of \",[\"total\"],\" collected\"],\"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\"],\"0caMy7\":[\"History\"],\"0gh1hu\":[\"Message Anarlog AI\"],\"0i4g58\":[\"Reset to Downloads\"],\"0lnHz4\":[\"Your comment couldn’t be added. Try again.\"],\"0nUR_H\":[\"Sort notes\"],\"0ppfde\":[\"Open Teams\"],\"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\"],\"1CWFAI\":[\"Cloud sync complete\"],\"1CobDU\":[\"Could not connect this library. Your local notes are unchanged. Try again.\"],\"1DBGsz\":[\"Notes\"],\"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.\"],\"1PsdIL\":[\"A guest can access one shared item for free. Add them to your Team when they need more.\"],\"1Rd_lW\":[\"Generating title...\"],\"1TNIig\":[\"Open\"],\"1_kKTx\":[\"Press a key combination here, or type one such as Control+Alt+D.\"],\"1_z1pP\":[\"Open in right panel\"],\"1d4SuI\":[\"Permissions for \",[\"0\"]],\"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\"],\"2-MnJp\":[\"Other device's version\"],\"27z-FV\":[\"Job Title\"],\"28jfSc\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr\"],\"2AXZkE\":[\"Untitled automation\"],\"2C3Jd-\":[\"Everything is already here.\"],\"2F7fJ4\":[\"Connect Outlook\"],\"2FYpfJ\":[\"More\"],\"2H7h-3\":[\"Transcription complete\"],\"2IiZEV\":[\"Choose the microphone that captures your voice.\"],\"2POOFK\":[\"Free\"],\"2R9AaP\":[\"Set up your recovery key to start encrypted cloud sync.\"],\"2WCH-K\":[\"First Words\"],\"2W_tce\":[\"Show tags under the date and time.\"],\"2XSWh3\":[\"Enable dictation\"],\"2XTNBb\":[\"Remove example \",[\"0\"]],\"2dR_1y\":[\"Open Anarlog from the menu bar.\"],\"2oJEzG\":[\"No related notes found\"],\"2oVBPZ\":[\"Search automations...\"],\"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.\"],\"3BJY6s\":[\"Guest access\"],\"3ILK42\":[\"Sign in to connect your calendar\"],\"3IV_Pj\":[\"Team library\"],\"3Ib6FN\":[\"Move down\"],\"3MATR5\":[\"No matching people\"],\"3Q7ouy\":[\"Protect cloud sync\"],\"3SZK43\":[\"Failed to load 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?\"],\"3hJypY\":[\"Insights\"],\"3ka08L\":[\"Press Escape to cancel. Dictation stops after five minutes and pauses while Anarlog records a meeting.\"],\"3uLkIr\":[\"No content.\"],\"3vtzIH\":[\"1 week\"],\"4-JaWo\":[\"Start free trial\"],\"4-O5QV\":[\"Wait before treating microphone activity as a meeting.\"],\"40Gx0U\":[\"Timezone\"],\"40qvNx\":[\"Hide all notification panels, Dock alerts, and completion sounds.\"],\"44CUit\":[\"Could not update the export folder\"],\"44SMQY\":[\"Write to a folder\"],\"47NkIo\":[\"Start voice input\"],\"487u-w\":[\"Open web copy\"],\"4BtvJ3\":[\"guest@company.com\"],\"4Ijav2\":[\"MCP configuration copied\"],\"4JC0UD\":[\"Bright canvas\"],\"4JKocE\":[\"Configure Providers\"],\"4Uf7r2\":[\"Choose files exported from this app.\"],\"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...\"],\"5CE-vF\":[\"Empty note\"],\"5CM_G1\":[\"Choose how much detail generated meeting summaries include.\"],\"5H-ixL\":[\"Cloud API enabled — 1 meeting uploaded\"],\"5IIg5u\":[\"Choose which day begins your calendar week.\"],\"5KHuOj\":[\"Start with permissions\"],\"5Q7pEB\":[\"Enter your API key (optional)\"],\"5ScI97\":[\"Describe the template purpose...\"],\"5SwVv1\":[\"Not installed\"],\"5TRY4-\":[\"Sync failed\"],\"5W9ke8\":[\"Runs once the AI summary for the meeting is ready.\"],\"5WVZ38\":[\"Turn on Anarlog in System Settings → Privacy & Security → Calendars, then return here.\"],\"5ZHtC-\":[\"Allow public indexing\"],\"5ZzgbQ\":[\"Connect \",[\"0\"]],\"5l9iMR\":[\"No templates yet\"],\"5lWFkC\":[\"Sign in\"],\"5nDAUC\":[\"Anarlog could not start cloud sync on this device. It will keep retrying.\"],\"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\"],\"6DbRcu\":[\"No single busiest day\"],\"6F072X\":[\"Your conversation history.\"],\"6GBt0m\":[\"Metadata\"],\"6NPGmR\":[\"Go back to now\"],\"6TMbcl\":[\"Show when a transcript is ready.\"],\"6UR3lQ\":[\"Last run failed \",[\"relative\"],\": \",[\"0\"]],\"6Uau97\":[\"Skip\"],\"6V3Ea3\":[\"Copied\"],\"6YtxFj\":[\"Name\"],\"6_dCYd\":[\"Overview\"],\"6bnoVc\":[\"Plan & Billing\"],\"6exX-8\":[\"Regenerate\"],\"6fgm0n\":[\"Access updated.\"],\"6gRgw8\":[\"Retry\"],\"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\"],\"77QyHf\":[\"This guest needs Team access\"],\"7FaY4u\":[\"Usage\"],\"7L01XJ\":[\"Actions\"],\"7MrxTW\":[\"Guest email\"],\"7SvxMN\":[\"not receiving events\"],\"7T8fPv\":[\"Prepare for events with a 5-minute reminder.\"],\"7UCRjz\":[\"Desktop edits published. Sharing resumed.\"],\"7VpPHA\":[\"Confirm\"],\"7ZrpGs\":[\"3 days\"],\"7i8j3G\":[\"Company\"],\"7kb4LU\":[\"Approved\"],\"7rYyiz\":[\"Browser handoff not working? Paste the callback link instead\"],\"844ReO\":[\"Play a sound when transcription, summaries, or cloud sync finish.\"],\"86CFb7\":[\"Keep Anarlog running to use your shortcut in other apps.\"],\"86olru\":[\"View sync log\"],\"89U4Me\":[\"Show when initial cloud sync finishes.\"],\"8F1i42\":[\"Page not found\"],\"8JPp2U\":[\"Upcoming Event\"],\"8JbUYF\":[\"Starting in \",[\"minutesUntil\"],\" minutes\"],\"8ROISG\":[\"I saved it\"],\"8U287n\":[\"Template actions\"],\"8byoFJ\":[\"Agent skills\"],\"8f1ev9\":[\"Search or add company\"],\"8fv9C8\":[\"Hi, I'm Anarlog AI. Set up a language model and I'll be ready to help.\"],\"8gHbzF\":[\"On-device transcription, recordings, and your own keys.\"],\"8gtQoG\":[\"Section actions\"],\"8kKZgy\":[\"If Anarlog stays closed, paste the link in the sign-in window.\"],\"8m6Z05\":[\"Search installed apps...\"],\"8pSC8v\":[\"Create your Anarlog account. A place for your conversations to call home.\"],\"8qExIt\":[\"Sign in with GitHub Copilot and enter the code below.\"],\"8siVfG\":[\"Try the demo\"],\"8tzR0k\":[\"Billing period\"],\"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.\"],\"98NHi3\":[[\"0\"],\" records are waiting for an app update\"],\"99VIgC\":[\"Remove member\"],\"9JIIfQ\":[\"Base URL\"],\"9NyAH9\":[\"Skipped\"],\"9TX6Pa\":[\"Starting microphone…\"],\"9TzudL\":[\"Connected accounts\"],\"9UQ730\":[\"Clone\"],\"9Yxf7D\":[\"Send the recap to the selected Slack channel.\"],\"9ZP9cc\":[\"Forever\"],\"9ZZjay\":[\"Choose a file format and what to include.\"],\"9b0R9d\":[\"Event notifications\"],\"9cDpsw\":[\"Permissions\"],\"9efXRZ\":[\"Cancel dictation\"],\"9fD_Oh\":[\"Enter template title\"],\"9hidy3\":[[\"date\"],\". Conversations: \",[\"count\"]],\"9jWVhJ\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Add a payment method before it ends to keep Pro.\"],\"9nBmH9\":[\"comments\"],\"9sfgQI\":[\"Symbols\"],\"9uI_rE\":[\"Undo\"],\"9y5Dqk\":[\"Remote MCP\"],\"A-zoTy\":[\"Current plan\"],\"A0gDyW\":[\"Turn 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\"],\"AS7WoE\":[\"Start fresh\"],\"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\"],\"AaGm0Y\":[\"Could not export. Check the export location in Settings and try again.\"],\"Aay0Ha\":[\"Enter 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.\"],\"AsRXfy\":[\"Sparkle\"],\"AyvXEo\":[\"Ask anything\"],\"B1Ixrl\":[\"Could not load your devices.\"],\"B3toQF\":[\"Objects\"],\"B9EOXl\":[\"Cloud sync resumes after this meeting finishes processing.\"],\"BBtkLn\":[\"Leaving gives up your access to shared notes here.\"],\"BI1JC9\":[\"Work on this task\"],\"BME6ak\":[\"Acme\"],\"BMtg5L\":[\"Save SCIM token\"],\"BRMXj0\":[\"Tomorrow\"],\"BSKNy-\":[\"Your badges\"],\"BSWu0Q\":[\"Export the meeting as Markdown\"],\"BVWlBx\":[\"Connect once to bring over your \",[\"0\"],\" history and keep new meetings coming in while you switch.\"],\"Bb1Kus\":[\"Complete onboarding. You're ready for your next conversation.\"],\"Bc6atd\":[\"Default sharing\"],\"BcKcB2\":[\"Review summary\"],\"BgEQj7\":[\"Couldn't save your new badges.\"],\"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?\"],\"C24-r-\":[\"Current domain\"],\"C2EZrZ\":[[\"0\"],\" min\"],\"C8Kq0i\":[\"Bring your meeting history\"],\"C8_CvT\":[\"Field Journal\"],\"CAL6E9\":[\"Teams\"],\"CAm3dv\":[\"Upcoming bot attendance\"],\"CBxBm6\":[\"Pause alerts while Do Not Disturb is on.\"],\"CCTop_\":[\"Recent\"],\"CEDja-\":[\"Automatically install updates\"],\"CIcxoC\":[\"Could not update general access.\"],\"CJE7fu\":[\"Monthly · $\",[\"monthlyPrice\"],\"/mo\"],\"CJMNaj\":[\"Remove automation\"],\"CKymls\":[\"Received \",[\"0\"]],\"CLuXwW\":[\"Your plan’s sync device limit is reached. Replace or remove another device to sync here.\"],\"CNq0rK\":[\"Memory Keeper\"],\"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.\"],\"E4hqYD\":[\"Couldn't save your profile. Try again.\"],\"E6sCFD\":[\"Sign out and sign in again to resume cloud sync.\"],\"E91VZY\":[\"Open in New Window\"],\"EDmCFR\":[\"All Notes\"],\"EF-M0w\":[\"Automations\"],\"EF4MSB\":[\"Continuing without trial\"],\"EQrQ7c\":[\"Save visible chat from supported meetings using Accessibility.\"],\"ETfuUp\":[\"SCIM bearer token\"],\"EUhN5p\":[\"Post to a channel\"],\"EcDJtN\":[\"Show tray icon\"],\"Ed3nPj\":[\"Failed to load Google Calendar\"],\"Ed99mE\":[\"Thinking...\"],\"EdlDoj\":[\"1 record is waiting for an app update\"],\"Ef7StM\":[\"Unknown\"],\"EijpWN\":[\"Sign in to connect \",[\"0\"]],\"EjzGtw\":[\"Your storage location is inside \",[\"cloudStorageService\"]],\"EkH9pt\":[\"Update\"],\"EnJuK0\":[\"Conversations\"],\"EsUsDj\":[\"Accept workspace ownership?\"],\"Ez8rFz\":[\"Search or create new\"],\"F-y8z6\":[\"Setting up dictation…\"],\"F2o3dO\":[\"Template content with Jinja2: {\",[\"variable\"],\"}, {% if condition %}\"],\"F37c1s\":[\"Open Settings\"],\"F4Z1m6\":[\"Retry setup\"],\"FBIuPX\":[\"Clear selection\"],\"FDraHX\":[\"Repair Keychain Access\"],\"FEr96N\":[\"Theme\"],\"FGq-gB\":[\"Show Deleted Events\"],\"FL1M-n\":[\"Insert above\"],\"FMrSJh\":[\"Open floating panel\"],\"FYzp8q\":[\"Remember speakers\"],\"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\"],\"Ff7zG5\":[\"Little steps worth keeping. Collect them at your own pace.\"],\"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.\"],\"GPKudC\":[\"Switch to Pro\"],\"GS-Mus\":[\"Export\"],\"GS8w9r\":[\"Show Event\"],\"GXsAby\":[\"Revoke\"],\"Ga0ICr\":[\"Join scheduled meetings\"],\"GaXvOD\":[\"Unnamed device\"],\"Gd7oV4\":[\"Add members\"],\"Gfj1wL\":[\"Sign in with your Claude account. After you authorize, copy the code and we'll finish connecting.\"],\"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\"],\"Gr265q\":[\"Share \",[\"title\"]],\"GsBUCk\":[\"Loading settings\"],\"GuMdvz\":[\"Ask before stopping when a meeting may have ended. When alerts are off, Anarlog keeps listening.\"],\"Gzw2pq\":[\"Intelligence\"],\"H-4oh7\":[\"notes\"],\"H1bfYt\":[\"Ask Anarlog anything\"],\"H1pTax\":[\"Draft a follow-up email to the participants\"],\"H2Sfhg\":[\"Trigger\"],\"H3dnS4\":[\"Your \",[\"days\"],\"-day Pro trial starts now. Pro will continue automatically when it ends.\"],\"H3oH0g\":[\"Redo\"],\"H4rmgl\":[\"Sign in to share folders, templates, and automations.\"],\"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.\"],\"Hp1l6f\":[\"Current\"],\"Hsf5-v\":[\"Complete onboarding\"],\"Ht95a3\":[\"No team selected yet.\"],\"HxnOKF\":[\"Select an organization to view details\"],\"HzVv6g\":[\"Paste\"],\"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\"],\"Ibjxfr\":[\"Request transfer\"],\"Ido_QU\":[\"Join & record\"],\"IelE1h\":[\"Upgrade to Pro\"],\"IgrLD_\":[\"Pause\"],\"IhBCiK\":[\"On Wayland, approve the shortcuts in your desktop's prompt. Use Control + Alt + Escape to cancel. On X11, press Escape to cancel. The target app must expose an editable accessibility field.\"],\"In2v7W\":[\"Z to A\"],\"InEWhY\":[\"Automation enabled\"],\"InrRZf\":[\"In \",[\"totalSeconds\"],\"s\"],\"ItMGda\":[\"Date range\"],\"IxJtaO\":[\"Opening sign-in…\"],\"Iyuuql\":[\"Choose how Anarlog looks on this device.\"],\"J0Ilc2\":[\"Paste a past summary you like...\"],\"J28zul\":[\"Connecting...\"],\"J2eKUI\":[\"File\"],\"J6uRsW\":[\"Summary generation failed\"],\"JAOArd\":[\"Speak into the focused text field in your apps. Your transcript appears when you finish.\"],\"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\"],\"JPbHx-\":[\"This requires Anarlog Pro\"],\"Ja1nGr\":[\"Use the AI meeting summary\"],\"Jch1AK\":[\"Calendar-scheduled capture jobs. Canceling stops the bot from joining.\"],\"JdMp7P\":[\"Blueprint\"],\"JfQCJW\":[\"This will remove \",[\"0\"],\" legacy files and free \",[\"1\"],\". Your app data will not be affected because the migration to SQLite is complete.\"],\"JlFcis\":[\"Send\"],\"Jpq3gO\":[\"Collected\"],\"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)\"],\"KAnPWz\":[\"Request ownership transfer?\"],\"KDNci_\":[\"Sync this local library with \",[\"email\"],\"?\"],\"KDw4GX\":[\"Try again\"],\"KF60Xw\":[\"Policies\"],\"KKO5eO\":[\"Compare Free, Pro, Team, and Enterprise.\"],\"KM6m8p\":[\"Team\"],\"KNnZVv\":[\"Shared with me · View only\"],\"KTphuq\":[\"Lock app\"],\"KZIHZY\":[\"Sign in to Anarlog\"],\"K_vtYi\":[\"Model being used\"],\"Kbwvno\":[\"Memo\"],\"KdtkLu\":[\"Tip: Add teammate names, acronyms, company jargon, and product terms.\"],\"KeEI4P\":[\"Runs after the recording finishes, not during the meeting.\"],\"KkOthv\":[\"Guide\"],\"Ktr-Ep\":[\"Downloading Anarlog \",[\"0\"],[\"progress\"]],\"Kv6Aj7\":[\"Connected · New meetings are imported automatically while Anarlog is running.\"],\"Kvvb6K\":[\"Choose a Linear team first.\"],\"L0jcdP\":[\"Sign in to connect\"],\"LCa7wr\":[\"Pro features available\"],\"LDrdzS\":[\"Chime\"],\"LEv5Yn\":[\"Application menu\"],\"LG5URL\":[\"Already taken\"],\"LMUw1U\":[\"Uhlelo lokusebenza\"],\"LTAt-s\":[\"Collected badges stay yours on this device, even when you delete a note or take a break. Imported transcripts count; the welcome demo doesn't.\"],\"LV-z4j\":[\"This name is synced to your other devices signed in to this account.\"],\"LVzeTw\":[\"This adds a copy you can edit without changing the shared item.\"],\"LW62-R\":[\"Could not update attachment sharing.\"],\"L_1f5c\":[\"Report a Bug\"],\"LbSuz3\":[\"No automations found\"],\"LfklIo\":[\"Permission for \",[\"label\"]],\"LhnZuD\":[\"Last import: \",[\"0\"],\" added, \",[\"1\"],\" unchanged\"],\"Lib3um\":[\"Loading scheduled captures…\"],\"Lj95Zh\":[\"They already have another shared item. Invite them to your Team for folders, templates, and automations.\"],\"Lknb9Z\":[\"No recent chats\"],\"LmN-_z\":[\"Could not start the integration setup. Try again.\"],\"LtI9AS\":[\"Owner\"],\"Lw49pT\":[\"Change workspace logo\"],\"LylDpi\":[\"No transcript available\"],\"M2Zu7c\":[\"Importing audio...\"],\"M3Z57x\":[\"Start listening when a scheduled meeting begins.\"],\"M3cXrK\":[[\"conflictedNotes\"],\" notes have a version from another device\"],\"M73whl\":[\"Context\"],\"MEIAzV\":[\"Unnamed\"],\"MFKlMB\":[\"Invite\"],\"MGOGAN\":[\"Enter a valid folder name.\"],\"MGQhyW\":[\"Regenerate message\"],\"MInfDZ\":[\"No people in this organization\"],\"MJ3bNJ\":[\"Anarlog can hear your voice\"],\"MPSrvq\":[\"Leave \",[\"workspaceName\"],\"?\"],\"MT3V1w\":[\"Talk to sales\"],\"MUck3U\":[\"This requires Anarlog Enterprise\"],\"MUy4kY\":[\"Finding Your Rhythm\"],\"MXFksL\":[\"Match whole word\"],\"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\"],\"N28Pxq\":[\"Manage your sign-in methods on the Anarlog website.\"],\"N2FcBE\":[\"Synced\"],\"NBdIgR\":[\"Comment\"],\"NFBUSj\":[\"Build voiceprints from meeting audio so speakers you name in a transcript are recognized in later meetings. Voiceprints never leave this device, and unnamed ones are deleted after 45 days.\"],\"NO_Lnr\":[\"People with a verified @\",[\"domain\"],\" email join this team when they sign in. Billing starts when they join and is prorated for the remaining billing period.\"],\"NPPJ5v\":[\"Join meeting and record\"],\"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...\"],\"NwCT78\":[\"Couldn’t check availability. You can still try Save.\"],\"NwaGSs\":[\"Connect \",[\"0\"],\" Calendar\"],\"NwiNTb\":[\"member\"],\"NxCJcc\":[\"Sign in to your account\"],\"O3oNi5\":[\"Email\"],\"O50mZT\":[\"Analyzing structure...\"],\"O5JHbm\":[\"Add another account\"],\"O8_Srb\":[\"Walnut\"],\"OAj4Fv\":[\"Storage configured\"],\"ODhiQV\":[\"Sign out of Anarlog?\"],\"OG_ZPr\":[\"Favorite template\"],\"OJx3wK\":[\"Not available\"],\"OL2swA\":[\"Bounce app icon\"],\"OL7Cmu\":[\"Memos\"],\"OLvGCM\":[\"Cloud sync and \",[\"cloudStorageService\"],\" can both change the same files, which can create conflicted copies and incomplete recordings. Move your Anarlog storage location to a folder 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...\"],\"Oda6_0\":[\"Capture conversations in 12 different weeks. A little at a time, at your own pace.\"],\"OfhWJH\":[\"Reset\"],\"Ogn0e_\":[\"Cleaning up...\"],\"OjkRLQ\":[\"Enter your API key\"],\"OlFf9i\":[\"Request\"],\"OmhFPg\":[\"Search or type owner/repo\"],\"OqIuKm\":[\"Waiting for device approval\"],\"OvoEq7\":[\"Member\"],\"P-qF_y\":[\"Help Anarlog listen to others\"],\"P0ywu_\":[\"Your transcript is ready.\"],\"P9Cyl9\":[\"(default)\"],\"P9cEa2\":[\"30 days\"],\"PBxg_E\":[\"Not now\"],\"PGtCmA\":[\"Find key decisions.\"],\"PIUonT\":[\"Could not start fresh: \",[\"0\"]],\"PLR8PJ\":[\"Can transcribe while the meeting is happening.\"],\"PLtPa6\":[\"Frequently used\"],\"PM195O\":[\"Start writing...\"],\"POKEJo\":[\"App icon\"],\"PPcets\":[\"Set as default\"],\"PPf7Ry\":[\"Send sanitized crash and error reports to help improve Anarlog.\"],\"PSWgMt\":[\"No models available.\"],\"PTGdbn\":[\"Attach up to three past summaries you like. Anarlog will learn how you prefer meeting notes to 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\"],\"QJsIKW\":[\"Typical conversation length\"],\"QL-UdY\":[\"Choose storage location\"],\"QR-4rH\":[\"Workspace activity from metadata only. Note content stays unreadable on the server.\"],\"QS7aG8\":[[\"primaryModifier\"],\" ↩ to send\"],\"QYCjYu\":[\"Sign in to add this folder\"],\"QYD_SS\":[\"Choose a language model for summaries and chat.\"],\"QjFXtL\":[\"Refresh billing status\"],\"QjzFZj\":[\"Only me\"],\"QoTcXw\":[\"Hold your shortcut while speaking, then release it to finish.\"],\"Qp3wAT\":[\"Transcribing voice input\"],\"QxzzNo\":[\"Email or name\"],\"QyioBP\":[\"Move up\"],\"Qzvd8q\":[\"File format\"],\"R-w_Va\":[\"Billing\"],\"R6qIZC\":[\"Choose extra fields to show on each note.\"],\"RCEkXu\":[\"Direct connection is not available yet. You can still bring your history over with files.\"],\"RFexLq\":[\"Press your shortcut to start, then press it again to finish.\"],\"RLe7Vk\":[\"Checking…\"],\"RNf7MP\":[\"Access no longer available\"],\"RP7tQo\":[\"Requested \",[\"0\"]],\"RWvn4x\":[\"Could not send the meeting notes to Slack.\"],\"RY-3Fg\":[\"Only people invited\"],\"RZxsYB\":[\"Detect meetings from microphone activity.\"],\"Rb6c8c\":[\"What were the key decisions that have been made?\"],\"RdvTSt\":[\"Completion sound\"],\"Rf7zqt\":[\"Keep notes current automatically.\"],\"Rg5J2X\":[\"Manage sign-in methods\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"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\"],\"SL43mA\":[\"Capture your first conversation. Every collection starts somewhere.\"],\"SOzk84\":[\"Checking trial eligibility...\"],\"SWZdzf\":[\"Sign in for cloud transcription, AI models, and sharing.\"],\"SX8beD\":[\"Add at least one configured action before enabling.\"],\"Sc2KJX\":[\"Review transfer\"],\"Sdv6pQ\":[\"Chat history\"],\"ShGeK-\":[[\"entryCount\"],\" selected\"],\"SiJfVB\":[\"Delete automation\"],\"SiUUCS\":[\"Next match\"],\"SkPGGb\":[\"Export location\"],\"SlfejT\":[\"Error\"],\"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\"],\"T6SXuw\":[\"Dictation shortcut\"],\"T7RGT6\":[\"Add file\"],\"TDyofS\":[\"Keep your recovery key saved somewhere safe. You can still use it if another approved device is unavailable.\"],\"TEQTaO\":[\"Hello, Anarlog\"],\"TKQ7K-\":[\"Install\"],\"TTXHWm\":[\"Slack channel\"],\"TTiybB\":[\"Show Apple Calendar events in Anarlog.\"],\"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\"],\"UUrpaV\":[\"Capture at least 5 conversations in this period to see patterns.\"],\"UYcdFk\":[\"You can use up to three example summaries.\"],\"U_JhNx\":[\"Verifying the SQLite migration status\"],\"UbRKMZ\":[\"Pending\"],\"UmuIdg\":[\"Go to Home\"],\"UqQjU0\":[\"Couldn't load your profile. Reopen this page to try again.\"],\"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\"],\"VBk1VC\":[[\"peakCount\"],\" of \",[\"total\"],\" conversations (\",[\"share\"],\") started on this weekday in the selected period.\"],\"VC6Da9\":[\"Fn / Globe\"],\"VGYp2r\":[\"Apply to all\"],\"VLXwz0\":[\"Summary complete\"],\"VN11G5\":[\"Choose custom color\"],\"VNb-9F\":[\"Sign in with SuperGrok or X Premium+ and enter the code below.\"],\"VPaARk\":[\"No community templates available\"],\"VQG_Gi\":[\"Improve summary format\"],\"VSpUvx\":[\"You'll need to sign in again to use cloud sync and account features.\"],\"VTwmIV\":[\"Copy this signing secret now — it is only shown once.\"],\"VWTQ1O\":[\"Open repository on GitHub\"],\"VWk5ib\":[\"Share one item with a guest, or add it to a Team for everyone.\"],\"VZuOvZ\":[\"Get your attention when Anarlog finishes work in the background.\"],\"VbxxQb\":[\"Skill installed\"],\"VdPy_I\":[\"Includes imported transcripts. Deleted conversations are excluded.\"],\"Ve1yDv\":[\"Signing secret copied\"],\"Vf7ltf\":[[\"absDays\"],\" days ago\"],\"VgaHWY\":[\"Change speaker from here\"],\"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.\"],\"W4j9BJ\":[\"Unlock the Team library\"],\"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.\"],\"WIMFT7\":[\"Keep this version\"],\"WJLsnE\":[\"Not invited\"],\"WNJbc3\":[\"Attachment settings updated.\"],\"WPDTjo\":[\"Preparing transcript...\"],\"WTTfE5\":[\"Keep desktop edits\"],\"WTfUfY\":[\"Sign in before enabling encrypted cloud sync\"],\"Wa3lWS\":[\"All Set\"],\"Wchqcr\":[\"Add a syllabus or PDF for this folder\"],\"Weq9zb\":[\"General\"],\"WfTNf7\":[\"Join automatically with a work email\"],\"WhFCQ6\":[\"Stop listening when your call ends.\"],\"WpXJEl\":[\"Folder access controls and reusable sharing are included with Pro.\"],\"Ws-OjG\":[\"Choose an export folder first.\"],\"WsGY1-\":[\"Joined \",[\"0\"]],\"WsMcz0\":[\"1 record is too large to apply\"],\"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.\"],\"XOJDc9\":[\"All time\"],\"XcKuak\":[\"Notepad\"],\"XfD5j6\":[\"Could not generate meeting insights. Try again.\"],\"Xghybr\":[\"Could not start voice input\"],\"Xgkhyj\":[\"Flags\"],\"Xm-eHu\":[\"Untitled template\"],\"Xq8Px-\":[\"Check microphone permission and the selected input device, then try again.\"],\"XqO1o0\":[\"Checking for changes\"],\"XrJHYR\":[\"Choose how Auto structures and styles your summaries.\"],\"XuLeMO\":[\"1 note has a version from another device\"],\"Xv1fNv\":[\"Microphone access turned on\"],\"XvZvQs\":[\"Meeting details access turned on\"],\"XvjC4F\":[\"Saving...\"],\"XwLFw0\":[\"Stack another destination. Steps run top to bottom.\"],\"Xwaz8E\":[\"Sync needs attention\"],\"Y2Gkk3\":[\"List action items.\"],\"YBt9YP\":[\"Beta\"],\"YC7uf1\":[\"No changes to sync\"],\"YF0LlS\":[\"The notes on this device belong to another Anarlog account. Starting fresh sets them aside as a backup file and restarts Anarlog with an empty workspace for the account you signed in with. Nothing from the old notes is uploaded.\"],\"YGIi_c\":[\"Reinstall\"],\"YIix5Y\":[\"Search...\"],\"YJDM7P\":[\"Could not create this invitation.\"],\"YJORBD\":[\"Automation removed\"],\"YL1772\":[[\"0\"],\" is ready to use\"],\"YPvaAj\":[\"Post recording disclosure in meeting chat\"],\"YRwdh4\":[\"Stop sharing\"],\"YRzqnA\":[\"Every conversation adds to your story.\"],\"YVkzDh\":[\"Stop transcription\"],\"YZnFQD\":[\"Use Windows Hello face, PIN, or password to view.\"],\"YapkrK\":[\"Hide Deleted Events\"],\"YgvtR4\":[\"Stop voice input\"],\"YjMwSM\":[\"macOS cannot access your login Keychain. Repairing briefly locks it and asks for your Mac password before Anarlog retries this API key.\"],\"YkTDNv\":[\"Stay current with updates installed the next time Anarlog opens.\"],\"YoPg7o\":[\"Replace with...\"],\"YpnKVj\":[\"Add skill to…\"],\"YqFGBZ\":[\"Search providers...\"],\"YqK2oS\":[\"Create \\\"\",[\"folderName\"],\"\\\"\"],\"YrwBGi\":[\"Median transcribed time. Conversations with timing: \",[\"0\"],\".\"],\"YspWAl\":[\"Help Anarlog read meeting activity\"],\"Z1K_bq\":[\"The note may have been unshared or moved out of a workspace you can access.\"],\"Z1ZUUI\":[\"Add notes about this contact...\"],\"Z3FXyt\":[\"Loading...\"],\"Z7ESbq\":[[\"weeks\"],\" weeks ago\"],\"Z7ZXbT\":[\"Approve\"],\"Z8lGw6\":[\"Share\"],\"Z9BpEd\":[\"Anarlog could not start cloud sync on this device.\"],\"ZAlmgB\":[\"This requires Anarlog Team\"],\"ZBqic9\":[\"Add a copy\"],\"ZClpoY\":[\"View LinkedIn profile\"],\"ZDIydz\":[\"Get started\"],\"ZHkrEQ\":[\"Crisp\"],\"ZILhSr\":[\"System audio enabled\"],\"ZJjNzd\":[\"Take the enhanced note with decisions and follow-ups.\"],\"ZLo_kc\":[\"Loading your badges…\"],\"ZMtODG\":[\"Paste the authorization code\"],\"ZQC7Wh\":[\"Use system audio to capture other speakers\"],\"ZR1dJ4\":[\"Invitations\"],\"ZSTojU\":[\"Resend invite\"],\"ZTCN0R\":[\"Cloud API enabled, but existing meetings could not be uploaded. Anarlog will retry.\"],\"ZVCRHy\":[\"Listening…\"],\"ZWkZ4h\":[\"Choose who can access notes from new meetings.\"],\"ZXLIht\":[[\"value\"],\" / \",[\"target\"],\" active weeks\"],\"Z_Kaod\":[\"Select or type to add speaker\"],\"ZbofGY\":[\"Sign in to get the most out of Anarlog\"],\"ZmHySp\":[\"Copy recovery key\"],\"ZpFn5k\":[\"Meeting note sent.\"],\"ZrYA_i\":[\"Use an existing key\"],\"Zriz4i\":[\"Waiting for authorization in your browser…\"],\"ZsMb6x\":[\"Share note\"],\"ZuABLv\":[\"Test failed (\",[\"0\"],\")\"],\"ZvK7bt\":[\"Invited \",[\"0\"],\". Could not invite \",[\"failed\"],\". Try again.\"],\"Zw-Zv-\":[\"MCP server\"],\"Zy-AQz\":[\"Can comment\"],\"_-zHBA\":[\"Failed to load pull request\"],\"_1S73l\":[\"Your Pro trial ends in 1 day\"],\"_21wgF\":[\"Busiest day\"],\"_5lOE_\":[\"Authorize access in your browser, then return to Anarlog.\"],\"_7qHy6\":[\"Set up AI summaries\"],\"_BrXbc\":[\"Your notes remain available locally. Anarlog will keep retrying.\"],\"_HR_3B\":[[\"0\"],\"% complete\"],\"_I7TDl\":[\"Ready to go\"],\"_JuxOq\":[\"Anarlog CLI\"],\"_Vuy6N\":[\"Meeting notes sent.\"],\"_cG8LY\":[\"Meeting chat\"],\"_ca_dz\":[\"Sync log\"],\"_eAGqV\":[\"Your recovery key encrypts synced notes before they leave this device. Anarlog cannot read or recover it.\"],\"_gDdar\":[\"My automations\"],\"_hpEcX\":[\"note\"],\"_i-e2D\":[\"Enable Cloud API & Connectors\"],\"_rTz0M\":[\"Audio\"],\"_sAtcT\":[\"Your busiest weekdays are tied at \",[\"peakCount\"],\" conversations each in the selected period.\"],\"_yk7tq\":[\"Meeting history imported\"],\"_zhshG\":[\"Save completed meetings as local Markdown files.\"],\"a-49Cg\":[\"Stone\"],\"a33eNU\":[\"Note is Locked\"],\"a3LDKx\":[\"Security\"],\"a3xbny\":[\"You're on a Pro trial\"],\"aAIQg2\":[\"Appearance\"],\"aC87LX\":[\"Everyone in \",[\"0\"]],\"aCkcn3\":[\"Test delivered (\",[\"0\"],\")\"],\"aHeulk\":[\"Key name (e.g. Claude Code)\"],\"aIxtZX\":[\"Click here, then use your dictation shortcut.\"],\"aP2Ckc\":[\"Could not copy the share link.\"],\"aQ3ibG\":[\"Library connected, but sync could not restart. Try again in sync settings.\"],\"aT3jZX\":[\"Select timezone\"],\"aTPgth\":[\"Collected \",[\"0\"]],\"aZkbTt\":[\"Open calendar account actions\"],\"aadDxR\":[\"Average across the capture days counted above.\"],\"adZx1i\":[\"Summary format cannot be empty.\"],\"agPptk\":[\"Medium\"],\"alKfit\":[\"Could not delete this note. Please try again.\"],\"an24fi\":[\"Sign in to use cloud sync\"],\"an_9it\":[\"Collaborator\"],\"aurQI0\":[\"Most conversations: \",[\"busiestDay\"]],\"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.\"],\"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\"],\"bgYlW5\":[\"No models ready to use.\"],\"bknXLd\":[\"Failed to load Outlook Calendar\"],\"brgXUB\":[\"Anarlog is Locked\"],\"bwRvnp\":[\"Action\"],\"c3XJ18\":[\"Help\"],\"c8f_uU\":[\"Week starts on\"],\"cCd8Bs\":[\"Cut\"],\"cFCKYZ\":[\"Deny\"],\"cH5kXP\":[\"Now\"],\"cIXC2T\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private. Pending invitations are free. New members are billed from when they join.\"],\"cLUelP\":[\"Capture 250 conversations. Your own library of shared knowledge.\"],\"cO9-2L\":[\"Disable\"],\"cQpGeE\":[\"Connector\"],\"cQww-u\":[\"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\"],\"ci8fMR\":[\"Update your personal contact card. Your sign-in email is managed separately.\"],\"ckH3fT\":[\"Ready\"],\"cnGeoo\":[\"Delete\"],\"cpE88-\":[\"Create your account\"],\"cqQyPB\":[\"Folder name\"],\"crwali\":[\"Reminders\"],\"csDS2L\":[\"Available\"],\"cuCCGZ\":[\"Add organization\"],\"cv7KUE\":[\"Anarlog could not read the local shared-note cache.\"],\"d-F6q9\":[\"Created\"],\"d8bVuK\":[\"Reasoning effort\"],\"dBQc5K\":[\"Merged\"],\"dChYDC\":[\"Clean up legacy files?\"],\"dEgA5A\":[\"Cancel\"],\"dF6vP6\":[\"Live\"],\"dH0Dsx\":[\"Loading teams…\"],\"dKw5zE\":[\"Could not copy to clipboard\"],\"dMzhKx\":[\"Match your device\"],\"dTbaJ6\":[\"Choose a Slack channel first.\"],\"dU5MOk\":[\"Connect Linear\"],\"dUCJry\":[\"Newest\"],\"dXebje\":[\"Manual sync\"],\"dXoieq\":[\"Summary\"],\"dYxz_q\":[\"Conversations: \",[\"total\"]],\"dbk4fQ\":[\"Could not delete the automation\"],\"dg7jDa\":[\"Background sync\"],\"dhQvIZ\":[\"Accept ownership\"],\"djV0z_\":[\"Rename this device\"],\"dnKgPP\":[\"Attach Markdown or text\"],\"dnU_Ut\":[\"Suggested templates\"],\"dsHesN\":[\"Review memo\"],\"dsJDgK\":[\"Submit callback URL\"],\"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...\"],\"eNLc8t\":[\"Start fresh on this device?\"],\"eO95Zd\":[\"Collect action items\"],\"ePK91l\":[\"Edit\"],\"eQkgKV\":[\"Installed\"],\"eUo5wp\":[\"Transcription\"],\"eVAt2q\":[\"Automation disabled\"],\"eWJ0qe\":[\"Manage Team billing\"],\"eXa-Is\":[\"Smileys & People\"],\"eYr1n0\":[\"Unlock your login Keychain in the macOS prompt. Anarlog will retry saving this API key automatically.\"],\"eaZgIQ\":[\"Copy config\"],\"ecUA8p\":[\"Today\"],\"ed_2oY\":[\"These rules apply to every member. Sharing changes fail closed on the server.\"],\"egU1Y7\":[\"Anarlog couldn't sign you out. 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\"],\"f-zOKl\":[\"Save PDF, text, Markdown, and Org exports to this folder.\"],\"f3caiP\":[\"API key saved\"],\"fBxoMs\":[\"Require Touch ID or your password when opening Anarlog.\"],\"fFSXy_\":[\"Continue to Team checkout\"],\"fGj1s-\":[\"Capture conversations in 4 different weeks. They don't need to be consecutive.\"],\"fGzaDH\":[\"Share notes with others\"],\"fHC97t\":[\"Could not email the meeting notes.\"],\"fJ_vD8\":[\"Only sync items from this \",[\"0\"],\".\"],\"fLeZwh\":[\"a month ago\"],\"fOG7ys\":[\"Bloom\"],\"fR-w0K\":[\"Anarlog will keep retrying.\"],\"fTfEiD\":[\"How to get a Kimi Code key\"],\"fcWrnU\":[\"Sign out\"],\"fdYj5d\":[\"Notion page\"],\"fdf-JY\":[\"Ownership transfer Pending. Current ownership and permissions remain unchanged until the proposed owner accepts.\"],\"fi0rGI\":[\"Tell participants when listening starts; this does not confirm consent.\"],\"fjYfTY\":[\"Materials\"],\"fqAlTq\":[\"Detection delay\"],\"fqSfXY\":[\"Replace\"],\"fuACUM\":[\"Capture 100 conversations. A hundred stories, saved in your own words.\"],\"fvg2KT\":[\"Restarting…\"],\"fx5vX_\":[\"Sound\"],\"g3UF2V\":[\"Accept\"],\"g3UbbO\":[\"Date and time are required\"],\"g3ZB1U\":[\"Choose template icon\"],\"g6UwCv\":[\"A Markdown file with the note, summary, and transcript.\"],\"gIvMnF\":[\"Open on GitHub\"],\"gLKskh\":[\"No apps found.\"],\"gS54yS\":[[\"title\"],\" deleted\"],\"gVfVfe\":[\"Contacts\"],\"gZPE9Z\":[\"Connect Slack to choose a channel for this recap.\"],\"gZUxpM\":[\"Cloud sync delayed\"],\"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.\"],\"hPKqnf\":[\"Conversations per active day\"],\"hYgDIe\":[\"Create\"],\"hb5UGc\":[\"Remove member?\"],\"hb5kUI\":[\"Last delivery \",[\"0\"]],\"he3ygx\":[\"Copy\"],\"hiBBEO\":[\"next month\"],\"hlNsg-\":[\"Automate what happens before, during, or after meetings based on the conditions you choose.\"],\"hn__ZK\":[\"Organization name\"],\"hnlGzG\":[\"Skip for now\"],\"hqGCdI\":[\"Cloud API disabled and readable copies deleted\"],\"hqPdfm\":[\"Request \",[\"0\"]],\"hspi7O\":[\"Choose a device below to replace, then this device will continue automatically.\"],\"hty0d5\":[\"Monday\"],\"hw5oLy\":[\"Shared with me · Can edit\"],\"hxP1AQ\":[\"Disable all notifications\"],\"hxpgmI\":[\"Anarlog user\"],\"i-4qpD\":[\"Markdown export\"],\"i0ZNp9\":[\"Public on the web\"],\"i3C3jT\":[\"Story Collector\"],\"i79rMQ\":[\"Anarlog couldn't complete this sync. Your notes are safe on this device.\"],\"i9EEuJ\":[[\"0\"],\" pending edits\"],\"i9gxNb\":[\"Sync health\"],\"i9jmtG\":[\"Search settings...\"],\"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\"],\"i_J4QW\":[\"Choose from five completion sounds.\"],\"ict6gq\":[\"Loading calendars...\"],\"idD8Ev\":[\"Saved\"],\"ihPQra\":[\"Can view\"],\"io0G93\":[\"Delete Event\"],\"ioYCNj\":[\"Could not start trial\"],\"iqIDv4\":[\"Sync status unavailable\"],\"isfLSj\":[\"Invitation pending\"],\"iy5EE0\":[\"This recording is using batch transcription, so the transcript isn't available to chat yet. Ask again after transcription finishes, or switch to a Pro model for live transcription.\"],\"iyoCCY\":[\"Select a model\"],\"j1njk6\":[\"Could not create these invitations.\"],\"j1wGzG\":[\"Keep using locally\"],\"jJ6nt2\":[\"Locked note\"],\"jKFEnI\":[\"Save & enable\"],\"jKzmc5\":[\"Remove workspace logo\"],\"jR0s46\":[\"No changelog available for this version.\"],\"jY-FUe\":[\"Enhance contact\"],\"jbq7j2\":[\"Decline\"],\"jdbCnX\":[\"Improve format\"],\"jeOkoK\":[\"Upgrade to use\"],\"jfo9Xh\":[\"Loading your insights…\"],\"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\"],\"k5LQxQ\":[\"You've been invited to join \",[\"0\"]],\"k8BJbJ\":[\"No notes 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\"],\"kVHATU\":[\"Busy\"],\"kVmmJf\":[\"Shared with me · Can comment\"],\"kWJmRL\":[\"You\"],\"kWYqSm\":[\"Not shared with a Team\"],\"kXqDR6\":[\"How much the model thinks before answering. Default leaves it to the provider.\"],\"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.\"],\"kpWBzC\":[\"Good Listener\"],\"kqUJxD\":[\"Starting transcription...\"],\"krxVot\":[\"Select a provider\"],\"ktCubu\":[\"Delete model\"],\"kwCJ-m\":[\"Join our community and stay updated:\"],\"kwkhPe\":[\"Upgrade\"],\"l21J2x\":[\"Your insights\"],\"l5PUgv\":[\"Choose a team\"],\"l6GfXr\":[\"Starting\"],\"lIHs6x\":[\"Invited by \",[\"0\"]],\"lJjRKT\":[\"Email meeting notes\"],\"lL2wFH\":[\"Shared note · Owner\"],\"lLmiGU\":[\"Delete \",[\"workspaceName\"],\" for everyone?\"],\"lPJPSV\":[\"This device's clock is wrong. Fix the date and time, and sync will continue automatically.\"],\"lQBDF8\":[\"Updating access\"],\"lQeGNv\":[\"Stop response\"],\"lRnnoM\":[\"Comment is too long.\"],\"lRpmgk\":[\"Add payment method\"],\"lS_1YK\":[\"Add a payment method before it ends to keep using Pro without an interruption.\"],\"lTMvdL\":[\"Could not load workspace members.\"],\"lWxAUo\":[\"Food & Drink\"],\"lWy5a1\":[\"Plans\"],\"lXLpzW\":[\"Notes list\"],\"lY1xB2\":[\"Dictation uses your microphone, transcription provider, languages, and dictionary. Temporary audio is deleted after transcription. Your last transcript stays in memory until dictation is disabled or Anarlog closes.\"],\"l_6JHD\":[\"Search icons...\"],\"l_gL9U\":[\"No channel selected yet.\"],\"lb_UU4\":[\"Sync now\"],\"lgQsz6\":[\"Play from here\"],\"lhkaAC\":[\"Trial\"],\"liS9fS\":[\"No 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)\"],\"m0Fs2r\":[[\"0\"],\" must accept before becoming owner. Until then, ownership and permissions stay the same. After acceptance, you become an admin and they control the workspace, including deletion.\"],\"m0b7v3\":[\"Software Engineer\"],\"m16xKo\":[\"Add\"],\"m99Vcx\":[\"Starting voice input\"],\"m9BhjD\":[\"You have an active plan\"],\"mCB6Je\":[\"Select All\"],\"mHN7Ty\":[\"Animals & Nature\"],\"mHVPm5\":[\"Reconnect required\"],\"mHWvqT\":[\"Your plan’s sync device limit is reached. Remove another device to sync here.\"],\"mIJUPF\":[[\"0\"],\" could not be installed\"],\"mM8bBF\":[\"Save this key in a password manager. New devices can usually be approved from another device; this key is your fallback and will 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\"],\"nIoLm1\":[\"Requires Anarlog Pro\"],\"nM0OCE\":[\"End-to-end encryption\"],\"nMlEQP\":[\"Post the meeting summary to a channel you can access.\"],\"nNd9OE\":[\"Device limit reached\"],\"nPM1LL\":[\"History \",[\"0\"],\"/\",[\"1\"]],\"nTWWCZ\":[\"Low\"],\"nUaBWp\":[\"Full Screen\"],\"nWMRxa\":[\"Unpin\"],\"nXNx3v\":[\"Clear selected model\"],\"njJFtc\":[\"Delete comment\"],\"njmOzO\":[\"Couldn't load your badges. Reopen this page to try again.\"],\"njvm9G\":[\"Create Linear issues\"],\"nsi5FV\":[\"No description provided.\"],\"nua-2L\":[\"Remove \",[\"0\"],\" from \",[\"workspaceName\"],\"? They will lose access to this workspace.\"],\"nwtY4N\":[\"Something went wrong\"],\"o-XJ9D\":[\"Change\"],\"o5jOsV\":[\"Earlier versions of this note, newest first.\"],\"oE8Gmu\":[\"Meeting\"],\"oEbZ1E\":[\"Cancel invitation?\"],\"oGcLFq\":[\"A to Z\"],\"oIc7ub\":[\"macOS 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.\"],\"oeiPBV\":[\"Show when a summary is ready.\"],\"oi9jAP\":[\"Apple Calendar access is off\"],\"olrNOE\":[\"Your Account\"],\"onILgk\":[\"Connected with your \",[\"0\"],\" subscription.\"],\"opQs1W\":[\"Everyone in the Team\"],\"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.\"],\"pNXrP-\":[\"Export every meeting as Markdown\"],\"pVpLbt\":[\"Add person\"],\"pVu8oX\":[\"Changes stay on this device until you resume sync.\"],\"pVuIpp\":[\"Add another device\"],\"pWyEjd\":[\"Connect library\"],\"pYIea1\":[\"Delete Note\"],\"pYblOw\":[\"No folder\"],\"pe3MoC\":[\"Example summary\"],\"pi1oME\":[\"Send message\"],\"pmDHTY\":[\"This device\"],\"pmUArF\":[\"Workspace\"],\"pqT_38\":[\"All events\"],\"pqZJT2\":[\"Close chat\"],\"pv9B8-\":[\"Checking connection\"],\"pvnfJD\":[\"Dark\"],\"q2v4sG\":[\"Signed in\"],\"q5h6bN\":[\"Show This Event\"],\"q5hsQC\":[\"Your notes remain available locally. Try again in a moment.\"],\"q9b00V\":[\"Upgrade this workspace to share folders, templates, and automations with everyone on the Team.\"],\"q9rX8V\":[\"Complete sign-in in your browser, then return to Anarlog.\"],\"qHkZkT\":[\"Updating audio sharing\"],\"qOEzyx\":[\"Capture 50 conversations. A growing collection of ideas and decisions.\"],\"qRQJp5\":[\"Weekly streak: \",[\"0\"]],\"qRSwae\":[\"Show floating bar\"],\"qRZeUt\":[\"Language & transcription\"],\"qTrs0L\":[\"Use a stable filename in the configured export directory.\"],\"qVkGWK\":[\"Pin\"],\"qZu20V\":[\"Anyone with the link\"],\"qavm0B\":[\"Devices\"],\"qdCErh\":[\"This note was edited on another device at the same time. The later edit was kept.\"],\"qgwc5G\":[\"Anarlog will sync your calendar to get meeting reminders\"],\"qiZShk\":[\"Recording status prompts\"],\"qkMcTC\":[\"Could not publish the desktop edits. Check the latest web copy and try again.\"],\"qkuTMn\":[\"Start Team\"],\"qqFihY\":[\"Based on captured conversations, including imported transcripts. Each conversation is counted once, on its first capture day in the selected period, using your calendar timezone. Deleted conversations are excluded.\"],\"qsQ_11\":[\"Add \",[\"0\"],\" account\"],\"quWMra\":[\"No emoji found\"],\"qvRaz1\":[\"Leave workspace\"],\"qxVngL\":[\"Your Pro trial ends in \",[\"daysRemaining\"],\" days\"],\"r1ViQ0\":[\"Waiting for approval\"],\"r5o5BI\":[\"Hands-free dictation\"],\"rBX6I4\":[\"Microphone detection\"],\"rDGNJJ\":[\"Meeting info\"],\"rFmBG3\":[\"Color theme\"],\"rH3yxU\":[\"Enter a model identifier\"],\"rIIa-e\":[\"No earlier versions yet.\"],\"rJe6vw\":[\"7 days\"],\"rLanrs\":[\"No automations yet\"],\"rOOntd\":[\"Pro trial\"],\"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\"],\"rr2vBd\":[\"In \",[\"minutes\"],\"m \",[\"seconds\"],\"s\"],\"rt-3Lo\":[\"Retention (days)\"],\"rt_fuz\":[\"Shared with me\"],\"rxuyob\":[\"Use files\"],\"s008C6\":[\"Show Sidebar\"],\"s02W-h\":[\"Use the other version\"],\"s3ZbWM\":[\"Your notes and recordings are safe. Free local transcription still works. Upgrade anytime to 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.\"],\"sNTKck\":[\"Try dictation\"],\"sOAOyt\":[\"Cloud sync resumes when the current activity finishes.\"],\"sP5Gvf\":[\"On-device models can take a few minutes to warm up before text appears.\"],\"sQxSWT\":[\"Paste an API key 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\"],\"so-tcg\":[\"Could not read the local library. Close this dialog and try again.\"],\"sxkWRg\":[\"Advanced\"],\"sy3hu6\":[\"Dictation\"],\"t3eW3-\":[\"Pro for every member, shared workspaces, roles, and centralized billing. $20 per person monthly or $200 yearly.\"],\"t3gf2s\":[\"Show in Finder\"],\"t3zZNj\":[\"Anarlog skill added to \",[\"0\"]],\"t9qtWL\":[\"People with access\"],\"t9x9vM\":[\"Float chat\"],\"tAJwm6\":[\"Yearly · $\",[\"yearlyPrice\"],\"/yr (save $\",[\"yearlySavings\"],\")\"],\"tDFEvl\":[\"Update project notes in Notion\"],\"tDV36S\":[\"Save date\"],\"tEQUBk\":[\"Version history\"],\"tFZ7jj\":[\"Could not identify this device. Try again.\"],\"tJJ1yV\":[\"Could not copy the transcript. Select the text above to copy it.\"],\"tK-YDa\":[[\"value\"],\" / \",[\"target\"],\" conversations\"],\"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\"],\"ttC3xO\":[[\"0\"],\" records are too large to apply\"],\"tujNJm\":[\"Improve with examples\"],\"tvBJNM\":[\"Apply to memo\"],\"twF2yK\":[\"Active days\"],\"tzwHRs\":[\"Conversations by weekday\"],\"u03sQa\":[\"Living Library\"],\"u7uzvm\":[\"No icons found\"],\"u9j1S1\":[\"Choose an AI model before generating a format.\"],\"uEGYDj\":[\"Cancel the invitation for \",[\"0\"],\"? They will no longer be able to join using this invitation.\"],\"uHIPUT\":[\"Syncing...\"],\"uLh6J1\":[\"No calendars found\"],\"uZ725m\":[\"Search pages shared with Anarlog…\"],\"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.\"],\"ur53BV\":[\"Sign in to generate this summary\"],\"uyFSCb\":[\"Could not read the local library\"],\"v0za2k\":[\"Anyone with the link can view. Link copied.\"],\"v1kQyJ\":[\"Webhooks\"],\"v39wLo\":[\"Resume\"],\"v3zBg_\":[\"Share audio\"],\"v7wPZC\":[\"Test runs are not available yet.\"],\"v9j_Kl\":[\"Remove \",[\"term\"]],\"vBKJJP\":[\"You can undo this action for a short time.\"],\"vCa1JS\":[\"Familiar Face\"],\"vDWsJS\":[\"Exclude apps from detection\"],\"vFb4kN\":[\"Use a verified work email to enable automatic joining. Personal email providers such as Gmail are excluded.\"],\"vNPhPR\":[\"Open Anarlog\"],\"vNoHGw\":[\"Apply to summary\"],\"vOMHPS\":[\"Choose \",[\"0\"],\" export files\"],\"vRsPKr\":[\"Your week at a glance\"],\"vS2FjA\":[\"Add a dated update to the selected Notion page.\"],\"vUIufq\":[\"Activity over the past year\"],\"varzpF\":[\"Starting in 1 minute\"],\"vbEFWX\":[\"Couldn't load your insights. Reopen this page to try again.\"],\"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\"]],\"w61W3L\":[\"Remove \",[\"0\"]],\"w6qPWt\":[\"Production\"],\"w7AUsM\":[\"Capture 10 conversations. More moments you can return to.\"],\"w7I2hc\":[\"Show All Recurring Events\"],\"w80YWM\":[\"Record\"],\"w8AWWf\":[\"Transcription failed\"],\"wBkR2K\":[\"Combine metadata, summary, notes, and transcript.\"],\"wF2wqQ\":[\"Unknown date\"],\"wHkDxd\":[\"Turn assigned follow-ups into Linear issue drafts.\"],\"wIa8Qe\":[\"Resend invitation\"],\"wKnp4e\":[\"Use 3–63 lowercase letters, numbers, or hyphens.\"],\"wOlZuu\":[\"Cloud API URL copied\"],\"wPseFn\":[\"Add meeting decisions and follow-ups to a Notion project.\"],\"wVWfrm\":[\"Calendar connected\"],\"wbvOwf\":[\"Upload transcript\"],\"wdaSxh\":[\"No folders yet\"],\"wja8aL\":[\"Untitled\"],\"wlQNTg\":[\"Members\"],\"wlkbwf\":[\"Create a Team to share a library\"],\"wm1sei\":[\"New Note\"],\"wn2wX1\":[\"Get Pro\"],\"wojf2H\":[\"Your personal notes and recordings stay on this device. Sync will connect them to this account and bring in its existing notes. Copies already in your previous account remain there. Team and shared notes stay with their workspace. Reconnect integrations for this account. After connecting, this library requires an app version that supports account switching.\"],\"wpdFO7\":[\"You will become the owner of \",[\"workspaceName\"],\", with control over its members, billing, and deletion. The current owner will become an admin.\"],\"wshevC\":[\"Assignees:\"],\"x-iy-T\":[\"Can edit\"],\"x2_MhB\":[\"Couldn't open connected accounts. Try again.\"],\"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\"],\"xNkgMH\":[\"Cancel transfer\"],\"xQLgKG\":[\"Create a shared workspace\"],\"xXYV-r\":[\"General access\"],\"xZy1aI\":[\"Could not update this person's access.\"],\"xaRs7t\":[\"Hours transcribed\"],\"xaVBSS\":[\"Your info\"],\"xiXKNw\":[\"Invite teammates, share notes across the workspace, and manage who has access. Your personal notes stay private.\"],\"xp5KbI\":[\"Last dictation\"],\"xu7RPQ\":[\"Less\"],\"xvN1F8\":[\"Replace repository\"],\"y1a9RH\":[\"Invited to join\"],\"y1eoq1\":[\"Copy link\"],\"y6n87h\":[\"Daily conversations\"],\"y7gUUx\":[\"Reconnect Linear\"],\"yChLA5\":[\"Cloud API keys\"],\"yKu_3Y\":[\"Restore\"],\"yL-Olj\":[\"Choose how Anarlog appears in the Dock.\"],\"yNXUIh\":[\"Show app in Dock\"],\"yRmuXU\":[\"Downloading \",[\"0\"],\" models\"],\"yRnk5W\":[\"API Key\"],\"yW9M0o\":[\"Deleting removes the workspace for everyone. Transfer ownership first if you only want to leave.\"],\"yX5j-O\":[\"A little more history will help\"],\"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\"],\"ymx53_\":[\"Right Command\"],\"yrxqua\":[\"sent\"],\"yttrRn\":[\"Examples must be Markdown or plain text files.\"],\"yx_fMc\":[\"High\"],\"yxt3Yi\":[\"Reconnect Notion\"],\"yz7wBu\":[\"Close\"],\"yzhEJp\":[\"Checking connection…\"],\"z-II1e\":[\"Finish in your browser, then return to Anarlog.\"],\"z-pqM4\":[\"Could not save the automation setting\"],\"z36QYN\":[\"Recipient email\"],\"z3ulUw\":[\"Your local notes are available. Connect this library to sync with your current account.\"],\"z7SFB4\":[\"Ready to dictate\"],\"zEqK2w\":[\"The page you're looking for doesn't exist.\"],\"zEwURR\":[\"Steps run from top to bottom.\"],\"zHxsgH\":[\"Copy last dictation\"],\"zJ5guL\":[\"Learn how to fix this\"],\"zJDAbh\":[\"Don't save\"],\"zJM-Wt\":[\"Sign in to share this note with others.\"],\"zMjN8w\":[\"REST API\"],\"zVj9Po\":[\"Help Anarlog listen to you\"],\"zX98rC\":[\"Open the meeting link when a scheduled meeting begins.\"],\"zXgG8C\":[\"Team plan\"],\"zmwvG2\":[\"Phone\"],\"zsJUbn\":[\"Oldest\"],\"zwWKhA\":[\"Learn more\"],\"zyvk9J\":[\"Respect Do-Not-Disturb mode\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No newline at end of file diff --git a/apps/desktop/src/main/lifecycle.tsx b/apps/desktop/src/main/lifecycle.tsx index 34a38bf49b7..41bbbebe9ac 100644 --- a/apps/desktop/src/main/lifecycle.tsx +++ b/apps/desktop/src/main/lifecycle.tsx @@ -11,6 +11,7 @@ import { buildChatTools } from "~/chat/tools"; import { CloudApiBackfillLifecycle } from "~/cloud-api/lifecycle"; import { searchContacts } from "~/contacts/queries"; import { useRegisterTools } from "~/contexts/tool"; +import { DictationLifecycle } from "~/dictation/lifecycle"; import { takePendingWelcomeSession } from "~/onboarding/welcome-note"; import { useSearchEngine } from "~/search/contexts/engine"; import { initEnhancerService } from "~/services/enhancer"; @@ -60,6 +61,7 @@ export function ClassicMainServices() { + diff --git a/apps/desktop/src/settings/dictation.tsx b/apps/desktop/src/settings/dictation.tsx new file mode 100644 index 00000000000..a991bc13c46 --- /dev/null +++ b/apps/desktop/src/settings/dictation.tsx @@ -0,0 +1,313 @@ +import { Trans, useLingui } from "@lingui/react/macro"; +import { useForm } from "@tanstack/react-form"; +import { useMutation, useQuery } from "@tanstack/react-query"; +import { writeText } from "@tauri-apps/plugin-clipboard-manager"; +import { platform } from "@tauri-apps/plugin-os"; + +import { commands as transcription } from "@anlg/plugin-transcription"; +import { Button } from "@anlg/ui/components/ui/button"; +import { Input } from "@anlg/ui/components/ui/input"; +import { Textarea } from "@anlg/ui/components/ui/textarea"; + +import { useBillingAccess } from "~/auth/billing-context"; +import { useDictationStatus } from "~/dictation/lifecycle"; +import { AudioDeviceRow } from "~/settings/general/audio-settings"; +import { SettingsPageTitle } from "~/settings/page-title"; +import { PlanGate } from "~/settings/plan-gate"; +import { useSetSettingValue } from "~/settings/queries"; +import { SettingSwitchRow } from "~/settings/setting-row"; +import { useConfigValue } from "~/shared/config"; +import { useTabs } from "~/store/zustand/tabs"; + +export function SettingsDictation() { + const { t } = useLingui(); + const { isPro } = useBillingAccess(); + const enabled = useConfigValue("dictation_enabled"); + const shortcut = useConfigValue("dictation_shortcut"); + const handsFree = useConfigValue("dictation_hands_free"); + const setEnabled = useSetSettingValue("dictation_enabled"); + const setHandsFree = useSetSettingValue("dictation_hands_free"); + const microphone = useConfigValue("microphone_device"); + const setMicrophone = useSetSettingValue("microphone_device"); + const microphones = useQuery({ + queryKey: ["microphone-devices"], + queryFn: async () => { + const result = await transcription.listMicrophoneDevices(); + if (result.status === "error") throw new Error(result.error); + return result.data; + }, + enabled: isPro, + refetchInterval: 3_000, + }); + const status = useDictationStatus(); + const openNew = useTabs((state) => state.openNew); + const copy = useMutation({ + mutationFn: () => writeText(status.lastTranscript), + }); + + return ( +
+ Dictation} /> + +
+

+ + Speak into the focused text field in your apps. Your transcript + appears when you finish. + +

+ Enable dictation} + description={ + + Keep Anarlog running to use your shortcut in other apps. + + } + checked={enabled} + onChange={setEnabled} + /> + + Microphone} + description={ + Choose the microphone that captures your voice. + } + value={microphone} + devices={microphones.data ?? []} + onChange={setMicrophone} + /> + Hands-free dictation} + description={ + handsFree ? ( + + Press your shortcut to start, then press it again to finish. + + ) : ( + + Hold your shortcut while speaking, then release it to finish. + + ) + } + checked={handsFree} + onChange={setHandsFree} + /> +

+ {platform() === "linux" ? ( + + On Wayland, approve the shortcuts in your desktop's prompt. Use + Control + Alt + Escape to cancel. On X11, press Escape to + cancel. The target app must expose an editable accessibility + field. + + ) : ( + + Press Escape to cancel. Dictation stops after five minutes and + pauses while Anarlog records a meeting. + + )} +

+
+ + + +
+ {enabled && ( +
+

+ {status.phase === "recording" + ? t`Listening…` + : status.phase === "transcribing" + ? t`Transcribing…` + : status.phase === "starting" + ? t`Starting microphone…` + : status.ready + ? t`Ready to dictate` + : t`Setting up dictation…`} +

+ {status.error && ( +

+ {status.error} +

+ )} + {status.error && ( + + )} + {status.phase !== "idle" && ( + + )} +
+ )} +